1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-23 19:55:38 +01:00
svtplay-dl/dockerfile/Dockerfile
2019-09-06 22:09:07 +02:00

22 lines
380 B
Docker

# using edge to get ffmpeg-4.x
FROM alpine:edge
MAINTAINER spaam
COPY dist/*.whl .
RUN set -xe \
&& apk add --no-cache \
ca-certificates \
python3 \
py3-pip \
rtmpdump \
py3-cryptography \
ffmpeg \
&& python3 -m pip install *.whl \
&& rm -f *.whl
WORKDIR /data
ENTRYPOINT ["python3", "/usr/bin/svtplay-dl"]
CMD ["--help"]