1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00

Include tzdata in Dockerfile #131

This commit is contained in:
Maksym Pavlenko
2020-10-04 14:31:28 -07:00
parent 3572e14706
commit ec5eae7b4f

View File

@ -3,6 +3,6 @@ FROM alpine:3.10
WORKDIR /app/
RUN wget -O /usr/bin/youtube-dl https://github.com/ytdl-org/youtube-dl/releases/latest/download/youtube-dl && \
chmod +x /usr/bin/youtube-dl && \
apk --no-cache add ca-certificates python ffmpeg
apk --no-cache add ca-certificates python ffmpeg tzdata
COPY podsync /app/podsync
CMD ["/app/podsync"]