2021-12-31 15:16:31 +02:00
|
|
|
# This is a template to be used by GoReleaser.
|
|
|
|
# See docs for details: https://goreleaser.com/customization/docker/
|
2019-11-15 10:51:05 -08:00
|
|
|
|
2021-12-28 08:45:18 +01:00
|
|
|
FROM alpine:3.10
|
2022-01-02 15:33:11 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
2022-06-15 03:39:15 +03:00
|
|
|
RUN wget -O /usr/bin/yt-dlp https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp && \
|
|
|
|
chmod +x /usr/bin/yt-dlp && \
|
|
|
|
ln -s /usr/bin/yt-dlp /usr/bin/youtube-dl && \
|
|
|
|
apk --no-cache add ca-certificates python3 py3-pip ffmpeg tzdata
|
2022-01-02 15:33:11 +02:00
|
|
|
COPY podsync /app/podsync
|
|
|
|
|
2021-05-11 08:31:25 +00:00
|
|
|
|
2022-01-02 15:33:11 +02:00
|
|
|
ENTRYPOINT ["/app/podsync"]
|
2021-05-11 08:31:25 +00:00
|
|
|
CMD ["--no-banner"]
|