Spaces:
Sleeping
Sleeping
File size: 178 Bytes
0a08d4d |
1 2 3 4 5 6 7 |
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python","./manage.py","runserver","0.0.0.0:7860"] |