From 5ffa61c28cda136ecc7fe325652b296d758d86af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Wei=C3=9F?= Date: Mon, 24 Nov 2025 21:06:27 +0100 Subject: [PATCH] fix entrypoint permissions --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c70edc..059dfd5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,6 @@ RUN apt-get update && \ bash nodesource_setup.sh && apt install nodejs RUN mkdir -p /app && \ - chmod -R 777 /app && \ mkdir /config && \ chmod 777 /config @@ -19,4 +18,6 @@ RUN wget "https://gitea.com/gitea/act_runner/releases/download/v${RUNNER_VERSION COPY "./entrypoint.sh" "/app/entrypoint.sh" +RUN chmod -R 777 /app + ENTRYPOINT "/app/entrypoint.sh" \ No newline at end of file