fix entrypoint permissions

This commit is contained in:
2025-11-24 21:06:27 +01:00
parent 742f1fb876
commit 5ffa61c28c

View File

@@ -9,7 +9,6 @@ RUN apt-get update && \
bash nodesource_setup.sh && apt install nodejs bash nodesource_setup.sh && apt install nodejs
RUN mkdir -p /app && \ RUN mkdir -p /app && \
chmod -R 777 /app && \
mkdir /config && \ mkdir /config && \
chmod 777 /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" COPY "./entrypoint.sh" "/app/entrypoint.sh"
RUN chmod -R 777 /app
ENTRYPOINT "/app/entrypoint.sh" ENTRYPOINT "/app/entrypoint.sh"