CloudStorage / Dockerfile
thejagstudio's picture
Update Dockerfile
00db01d verified
raw
history blame
256 Bytes
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN apt-get install python3-libtorrent
RUN apt-get install libtorrent-rasterbar-dev
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python","./manage.py","runserver","0.0.0.0:7860"]