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"]