Spaces:
Runtime error
Runtime error
File size: 474 Bytes
106f4d8 de1ee14 106f4d8 de1ee14 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
FROM python:3.10.4-slim-bullseye
WORKDIR /usr/src/app
RUN chmod 777 /usr/src/app
RUN apt-get -qq update && apt-get -qq install -y \
git \
wget \
pv \
jq \
python3-dev \
mediainfo \
gcc \
aria2 \
libsm6 \
libxext6 \
libfontconfig1 \
libxrender1 \
libgl1-mesa-glx \
ffmpeg \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY . .
RUN pip3 install --no-cache-dir -r requirements.txt
CMD ["bash","run.sh"]
|