mirror of
https://github.com/AudreyBeard/compressure.git
synced 2026-02-03 21:39:17 +01:00
12 lines
261 B
Docker
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"]
|