File: alpine.dockerfile

package info (click to toggle)
liquidsoap 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,372 kB
  • sloc: ml: 71,806; javascript: 27,320; ansic: 398; xml: 114; sh: 99; lisp: 96; makefile: 26
file content (20 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM alpine:edge AS downloader

ARG APK_FILE

COPY $APK_FILE /downloads/liquidsoap.apk

FROM alpine:edge

RUN --mount=type=bind,from=downloader,source=/downloads,target=/downloads \
    set -eux; \
      echo 'https://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories; \
      apk add --allow-untrusted --no-cache \
        /downloads/liquidsoap.apk \
      ;

USER liquidsoap

RUN liquidsoap --cache-stdlib

ENTRYPOINT ["/usr/bin/liquidsoap"]