1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00
svtplay-dl/dockerfile/Dockerfile
2023-10-09 23:56:49 +02:00

21 lines
396 B
Docker

# using edge to get ffmpeg-4.x
FROM alpine:edge
LABEL maintainer="j@i19.se"
COPY dist/*.whl .
RUN set -xe \
&& apk add --no-cache \
ca-certificates \
python3 \
py3-pip \
py3-cryptography \
ffmpeg \
&& python3 -m pip install --break-system-packages *.whl \
&& rm -f *.whl
WORKDIR /data
ENTRYPOINT ["python3", "/usr/bin/svtplay-dl"]
CMD ["--help"]