OnlineJudge/deploy/Dockerfile

6 lines
184 B
Docker
Raw Normal View History

2017-10-21 20:39:39 +08:00
FROM python:3.6
2016-10-30 12:56:47 +08:00
ADD requirements.txt /tmp
RUN pip install -r /tmp/requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
WORKDIR /app
2017-01-24 16:11:46 +08:00
CMD python manage.py runserver 0.0.0.0:8085