mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-16 01:13:47 +00:00
5 lines
183 B
Docker
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
|