1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
mxpv-podsync/Dockerfile
jtagcat da93686a57 Dockerfile:add --no-banner.
Command output, or `logs` on the docker container results in a garbled banner. Disable printing it for docker.
2021-05-24 15:37:32 -07:00

11 lines
317 B
Docker

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"]