OnlineJudge/deploy/Dockerfile

6 lines
184 B
Docker
Raw Normal View History

2017-01-24 08:11:46 +00:00
FROM python:3.5
2016-10-30 04:56:47 +00: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 08:11:46 +00:00
CMD python manage.py runserver 0.0.0.0:8085