From 8417b9e5d78149cb3ced51506a8e33e2a30625a0 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 3 May 2025 22:25:17 +0100 Subject: [PATCH] Update Dockerfile to use entrypoint.sh instead of start.sh --- .github/runner/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/runner/Dockerfile b/.github/runner/Dockerfile index fecddb5..efcba95 100644 --- a/.github/runner/Dockerfile +++ b/.github/runner/Dockerfile @@ -18,13 +18,13 @@ RUN cd /home/docker && mkdir actions-runner && cd actions-runner \ RUN chown -R docker ~docker && /home/docker/actions-runner/bin/installdependencies.sh -COPY start.sh start.sh +COPY entrypoint.sh entrypoint.sh # make the script executable -RUN chmod +x start.sh +RUN chmod +x entrypoint.sh # since the config and run script for actions are not allowed to be run by root, # set the user to "docker" so all subsequent commands are run as the docker user USER docker -ENTRYPOINT ["./start.sh"] \ No newline at end of file +ENTRYPOINT ["./entrypoint.sh"] \ No newline at end of file