1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
mxpv-podsync/Dockerfile
Maksym Pavlenko f337f6c8b1 Update release actions
Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
2021-12-31 15:16:31 +02:00

12 lines
411 B
Docker

# This is a template to be used by GoReleaser.
# See docs for details: https://goreleaser.com/customization/docker/
FROM alpine:3.10
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 /podsync
ENTRYPOINT ["/podsync"]
CMD ["--no-banner"]