Fix youtube-dl path in Docker file

This commit is contained in:
Maksym Pavlenko
2019-11-15 11:45:33 -08:00
parent 354795e1e3
commit 2644de9148
+2 -2
View File
@@ -1,8 +1,8 @@
FROM alpine:3.10
WORKDIR /app/
RUN wget -O youtube-dl https://github.com/ytdl-org/youtube-dl/releases/download/2019.11.05/youtube-dl && \
chmod +x youtube-dl && \
RUN wget -O /usr/bin/youtube-dl https://github.com/ytdl-org/youtube-dl/releases/download/2019.11.05/youtube-dl && \
chmod +x /usr/bin/youtube-dl && \
apk --no-cache add ca-certificates python ffmpeg
COPY podsync /app/podsync
CMD ["/app/podsync"]