File size: 335 Bytes
a197417
00db01d
 
1ab5b54
 
3d66ec5
00db01d
 
 
0a08d4d
1
2
3
4
5
6
7
8
9
10
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"]