From 619b93b04297ce2500cd2617c6a68fd6d27ce7b3 Mon Sep 17 00:00:00 2001 From: Roman Pytkov Date: Wed, 5 Nov 2025 21:41:38 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D1=80=D0=BE=D0=BF=20=D0=BA=D0=BE=D0=BD?= =?UTF-8?q?=D1=84=D0=B8=D0=B3=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/LiquidCode.Tester.Worker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/LiquidCode.Tester.Worker/Dockerfile b/src/LiquidCode.Tester.Worker/Dockerfile index b5ba069..2434eac 100644 --- a/src/LiquidCode.Tester.Worker/Dockerfile +++ b/src/LiquidCode.Tester.Worker/Dockerfile @@ -87,9 +87,9 @@ RUN useradd -m -u 1001 -s /bin/bash workeruser && \ chmod 755 /var/local/lib/isolate && \ chown -R workeruser:workeruser /var/local/lib/isolate -# Configure isolate -RUN printf "box_root=/var/local/lib/isolate\ncg_root=/sys/fs/cgroup\ncg=1\n" > /usr/local/etc/isolate.conf && \ - ln -sf /usr/local/etc/isolate.conf /usr/local/etc/isolate +# Configure isolate directories (defaults in isolate binary already match these paths) +# The binary falls back to /var/local/lib/isolate for boxes and /sys/fs/cgroup for cgroups, +# so no explicit config file is required here. # Copy published app COPY --from=publish /app/publish .