mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-06 04:21:51 +00:00
6 lines
184 B
Docker
6 lines
184 B
Docker
FROM python:3.5
|
|
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
|