Dockerfile:add --no-banner.

Command output, or `logs` on the docker container results in a garbled banner. Disable printing it for docker.
This commit is contained in:
jtagcat
2021-05-24 15:37:32 -07:00
committed by Maksym Pavlenko
parent cc9fcb4217
commit da93686a57
+3 -1
View File
@@ -5,4 +5,6 @@ RUN wget -O /usr/bin/youtube-dl https://github.com/ytdl-org/youtube-dl/releases/
chmod +x /usr/bin/youtube-dl && \
apk --no-cache add ca-certificates python ffmpeg tzdata
COPY podsync /app/podsync
CMD ["/app/podsync"]
ENTRYPOINT ["/app/podsync"]
CMD ["--no-banner"]