From 074fe07613ba1c5c6371ad93ca95812614e7debe Mon Sep 17 00:00:00 2001 From: Pedro Ferreira Date: Wed, 1 Oct 2025 00:48:19 +0100 Subject: [PATCH] fix(rust-tests): made isolate.sh executable both on host and reliably via Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6755e18..28cf287 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,4 +25,6 @@ LABEL org.opencontainers.image.licenses=MIT COPY entrypoint.sh ./ COPY isolate.sh ./ +RUN chmod +x ./entrypoint.sh ./isolate.sh + ENTRYPOINT ["/app/entrypoint.sh"]