Spaces:
Runtime error
Runtime error
File size: 324 Bytes
00db01d 4b3128b 2c26550 4b3128b 00db01d 0a08d4d |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN python -m pip install --upgrade pip setuptools wheel
RUN apt-get update -y
RUN apt-get install -y python3-libtorrent
RUN apt-get install -y ffmpeg
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python","./manage.py","runserver","0.0.0.0:7860"] |