From 27e1729511768f03a5cd7bcd1eeda489a5cb3eb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81ron=20Nosz=C3=A1ly?= Date: Sun, 7 Apr 2024 14:19:35 +0200 Subject: [PATCH] Stay on Isolate v1 --- internal/judge/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/judge/Dockerfile b/internal/judge/Dockerfile index d4a119e5..1db70d75 100644 --- a/internal/judge/Dockerfile +++ b/internal/judge/Dockerfile @@ -3,7 +3,7 @@ ARG PROJECT_NAME FROM ubuntu:22.04 as judge_deps RUN apt-get update && apt-get install -y wget gcc g++ git build-essential libcap-dev WORKDIR /app -RUN git clone https://github.com/ioi/isolate.git +RUN git clone --depth 1 --branch v1.10.1 https://github.com/ioi/isolate.git WORKDIR /app/isolate RUN make isolate