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
|
|
|
|
|
2020-11-17 14:22:06 -08:00
|
|
|
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
|
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"]
|