Files
compressure/Dockerfile

12 lines
261 B
Docker

FROM jrottenberg/ffmpeg:4.1-ubuntu
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /compressure
COPY . .
RUN apt-get update; \
apt-get install -y \
python3.9 \
python3-pip; \
pip3 install -r requirements.txt; \
pip3 install .
ENTRYPOINT ["bash"]