This commit is contained in:
ᗪєνιη ᗷυнʟ
2021-02-03 20:21:34 -05:00
committed by Senan Kelly
parent a5c1f43a93
commit 8dba8eb924

View File

@@ -17,7 +17,8 @@ FROM alpine:3.12.3
RUN apk add -U --no-cache \
ffmpeg \
ca-certificates \
tzdata
tzdata \
tini
COPY --from=builder \
/usr/lib/libgcc_s.so.1 \
/usr/lib/libstdc++.so.6 \
@@ -34,4 +35,5 @@ ENV GONIC_LISTEN_ADDR :80
ENV GONIC_MUSIC_PATH /music
ENV GONIC_PODCAST_PATH /podcasts
ENV GONIC_CACHE_PATH /cache
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["gonic"]