From fe0fa7c686abfb99aa5a69296ff6e24666de41a5 Mon Sep 17 00:00:00 2001 From: Ryan Gonzalez Date: Thu, 23 Oct 2025 11:27:19 -0500 Subject: [PATCH] Use JSON arguments for the Dockerfile ENTRYPOINT In addition to the strange influence on signal handling: https://docs.docker.com/reference/build-checks/json-args-recommended/ using the shell form as we do also means that CLI arguments won't actually get forwarded to the runner, which isn't particularly useful. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 392bc22..d204c63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,4 +23,4 @@ COPY --from=build /app/target/release/obs-gitlab-runner /usr/local/bin/ USER obs-gitlab-runner -ENTRYPOINT /usr/local/bin/obs-gitlab-runner +ENTRYPOINT ["/usr/local/bin/obs-gitlab-runner"]