File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,10 @@ FROM ubuntu:16.04
33COPY build/java_policy /etc
44
55RUN buildDeps='software-properties-common git libtool cmake python-dev python3-pip python-pip libseccomp-dev' && \
6- apt-get update && apt-get install -y nodejs python python3.5 python-pkg-resources python3-pkg-resources gcc g++ $buildDeps && \
6+ apt-get update && apt-get install -y curl python python3.5 python-pkg-resources python3-pkg-resources gcc g++ $buildDeps && \
77 add-apt-repository ppa:openjdk-r/ppa && apt-get update && apt-get install -y openjdk-8-jdk && \
8+ curl -sL https://deb.nodesource.com/setup_12.x -o nodesource_setup.sh && bash nodesource_setup.sh && \
9+ apt-get install -y nodejs && \
810 pip3 install --no-cache-dir psutil gunicorn flask requests && \
911 cd /tmp && git clone -b newnew --depth 1 https://github.com/QingdaoU/Judger && cd Judger && \
1012 mkdir build && cd build && cmake .. && make && make install && cd ../bindings/Python && python3 setup.py install && \
You can’t perform that action at this time.
0 commit comments