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

9 lines
268 B
Docker
Raw Normal View History

2019-11-13 19:12:33 -08:00
FROM alpine:3.10
2019-11-15 10:51:05 -08:00
2019-11-13 19:12:33 -08:00
WORKDIR /app/
2019-11-15 11:35:34 -08:00
RUN wget -O youtube-dl https://github.com/ytdl-org/youtube-dl/releases/download/2019.11.05/youtube-dl && \
chmod +x youtube-dl && \
apk --no-cache add ca-certificates python ffmpeg
2019-11-13 20:43:47 -08:00
COPY podsync /app/podsync
2019-11-15 11:35:34 -08:00
CMD ["/app/podsync"]