OnlineJudge/deploy/Dockerfile
virusdefender 2f77be5c4b dev deploy
2016-10-30 12:56:47 +08:00

5 lines
183 B
Docker

FROM python:2.7
ADD requirements.txt /tmp
RUN pip install -r /tmp/requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
WORKDIR /app
CMD python manage.py runserver 0.0.0.0:8085