Spaces:
Sleeping
Sleeping
FROM nvidia/cuda:11.3.1-base-ubuntu20.04 | |
WORKDIR /usr/src/app | |
COPY requirements.txt ./ | |
RUN python -m pip install --upgrade pip setuptools wheel | |
RUN python -m pip install lbry-libtorrent | |
RUN python -m pip install libtorrent | |
RUN pip install -r requirements.txt | |
COPY . . | |
EXPOSE 7860 | |
CMD ["python","./manage.py","runserver","0.0.0.0:7860"] |