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

15 lines
434 B
Docker
Raw Normal View History

# This is a template to be used by GoReleaser.
# See docs for details: https://goreleaser.com/customization/docker/
2019-11-15 10:51:05 -08:00
2021-12-28 08:45:18 +01:00
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 tzdata
COPY podsync /app/podsync
ENTRYPOINT ["/app/podsync"]
CMD ["--no-banner"]