mirror of
https://github.com/QingdaoU/JudgeServer.git
synced 2025-01-15 21:12:54 +00:00
6 lines
352 B
Docker
6 lines
352 B
Docker
FROM judger
|
|
RUN apt-get update && apt-get install -y cmake vim
|
|
RUN cd /tmp && rm -rf Judger && git clone https://github.com/QingdaoU/Judger.git && cd Judger && git checkout newnew && mkdir build && cd build && cmake .. && make && make install && cd ../bindings/Python && python setup.py install
|
|
RUN mkdir /var/wp
|
|
RUN pip install psutil gunicorn web.py
|