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