Spaces:
Sleeping
Sleeping
File size: 271 Bytes
796d805 00db01d 1ab5b54 00db01d 0a08d4d |
1 2 3 4 5 6 7 8 9 |
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN python -m pip install --upgrade pip setuptools wheel
RUN python -m pip install lbry-libtorrent
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python","./manage.py","runserver","0.0.0.0:7860"] |