diff --git a/.docker/tier1/Dockerfile b/.docker/tier1/Dockerfile index 53e8a5ffc..36a712448 100644 --- a/.docker/tier1/Dockerfile +++ b/.docker/tier1/Dockerfile @@ -16,7 +16,7 @@ RUN ARCH=$([ $(uname -m) = "x86_64" ] && echo "amd64" || echo "arm64") && \ RUN mkdir /judge /problems && cd /judge && \ curl -L https://github.com/VNOI-Admin/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \ python3 -m venv --prompt=DMOJ /env && \ - /env/bin/pip3 install cython && \ + /env/bin/pip3 install cython setuptools && \ /env/bin/pip3 install -e . && \ /env/bin/python3 setup.py develop && \ HOME=~judge . ~judge/.profile && \ diff --git a/.docker/tier2/Dockerfile b/.docker/tier2/Dockerfile index 86710fcac..9adb217e3 100644 --- a/.docker/tier2/Dockerfile +++ b/.docker/tier2/Dockerfile @@ -16,7 +16,7 @@ RUN ARCH=$([ $(uname -m) = "x86_64" ] && echo "amd64" || echo "arm64") && \ RUN mkdir /judge /problems && cd /judge && \ curl -L https://github.com/VNOI-Admin/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \ python3 -m venv --prompt=DMOJ /env && \ - /env/bin/pip3 install cython && \ + /env/bin/pip3 install cython setuptools && \ /env/bin/pip3 install -e . && \ /env/bin/python3 setup.py develop && \ HOME=~judge . ~judge/.profile && \ diff --git a/.docker/tier3/Dockerfile b/.docker/tier3/Dockerfile index 0249e3c5d..a9898f93e 100644 --- a/.docker/tier3/Dockerfile +++ b/.docker/tier3/Dockerfile @@ -16,7 +16,7 @@ RUN ARCH=$([ $(uname -m) = "x86_64" ] && echo "amd64" || echo "arm64") && \ RUN mkdir /judge /problems && cd /judge && \ curl -L https://github.com/VNOI-Admin/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \ python3 -m venv --prompt=DMOJ /env && \ - /env/bin/pip3 install cython && \ + /env/bin/pip3 install cython setuptools && \ /env/bin/pip3 install -e . && \ /env/bin/python3 setup.py develop && \ HOME=~judge . ~judge/.profile && \ diff --git a/.docker/tiericpc/Dockerfile b/.docker/tiericpc/Dockerfile index 9290a14d9..2f21dfe56 100644 --- a/.docker/tiericpc/Dockerfile +++ b/.docker/tiericpc/Dockerfile @@ -5,7 +5,7 @@ ARG TAG=master RUN mkdir /judge /problems && cd /judge && \ curl -L https://github.com/VNOI-Admin/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \ python3 -m venv --prompt=DMOJ /env && \ - /env/bin/pip3 install cython && \ + /env/bin/pip3 install cython setuptools && \ /env/bin/pip3 install -e . && \ /env/bin/python3 setup.py develop && \ HOME=~judge . ~judge/.profile && \ diff --git a/.docker/tiervnoj/Dockerfile b/.docker/tiervnoj/Dockerfile index 913ec97e5..856d536c9 100644 --- a/.docker/tiervnoj/Dockerfile +++ b/.docker/tiervnoj/Dockerfile @@ -41,7 +41,7 @@ ENV PATH="/opt/kotlin/bin:/opt/pypy2/bin:/opt/pypy3/bin:/home/judge/.cargo/bin:$ RUN mkdir /judge /problems && cd /judge && \ curl -L https://github.com/VNOI-Admin/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \ python3 -m venv --prompt=DMOJ /env && \ - /env/bin/pip3 install cython && \ + /env/bin/pip3 install cython setuptools && \ /env/bin/pip3 install -e . && \ /env/bin/python3 setup.py develop && \ HOME=~judge . ~judge/.profile && \