mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
11 lines
280 B
Docker
11 lines
280 B
Docker
FROM alpine:3.10
|
|
|
|
WORKDIR /app/
|
|
|
|
RUN apk --no-cache add ca-certificates python ffmpeg tzdata
|
|
# see #191 for youtube-dl related questions
|
|
RUN apk --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main add youtube-dl
|
|
|
|
COPY podsync /app/podsync
|
|
CMD ["/app/podsync"]
|