mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 04:05:39 +01:00
19 lines
463 B
Docker
19 lines
463 B
Docker
|
# using edge to get ffmpeg-4.x
|
||
|
# using testing repo to get pycryptodome
|
||
|
FROM alpine:edge
|
||
|
MAINTAINER spaam
|
||
|
RUN set -xe \
|
||
|
&& echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \
|
||
|
&& apk add --no-cache \
|
||
|
ca-certificates \
|
||
|
python3 \
|
||
|
py3-pip \
|
||
|
rtmpdump \
|
||
|
py3-pycryptodome \
|
||
|
ffmpeg \
|
||
|
&& pip3 install svtplay-dl
|
||
|
|
||
|
WORKDIR /data
|
||
|
|
||
|
ENTRYPOINT ["python3", "/usr/bin/svtplay-dl"]
|
||
|
CMD ["--help"]
|