Merge branch 'fix_python3.5'

This commit is contained in:
zema1 2017-11-29 21:50:05 +08:00
commit 6c3e224e05

View File

@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND noninteractive
COPY build/java_policy /etc
RUN buildDeps='software-properties-common git libtool cmake python-dev python-pip libseccomp-dev' && \
apt-get update && apt-get install -y python python-pkg-resources gcc g++ $buildDeps && \
apt-get update && apt-get install -y python python3.5 python-pkg-resources gcc g++ $buildDeps && \
add-apt-repository ppa:openjdk-r/ppa && apt-get update && apt-get install -y openjdk-7-jdk && \
pip install --no-cache-dir futures psutil gunicorn web.py requests && \
cd /tmp && git clone -b newnew --depth 1 https://github.com/QingdaoU/Judger && cd Judger && \