From f3466939f6b1165a649b9175a2f1388b9af4bfbb Mon Sep 17 00:00:00 2001 From: "J.P. Krauss" Date: Wed, 13 Aug 2025 16:37:15 -0700 Subject: [PATCH] fix: make the entrypoint executable without needing BuildKit --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d37ef37..1ac593c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,5 +2,6 @@ FROM alpine:3.22 RUN apk update && \ apk add ansible bash py3-pip step-cli -COPY --chmod=755 entrypoint.sh /entrypoint.sh +COPY entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]