diff --git a/Dockerfile b/Dockerfile index 72d5d6e..9221779 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG ALPINE_VERSION -FROM alpine:$ALPINE_VERSION +FROM alpine:${ALPINE_VERSION:-3.20} ARG TARGETOS ARG TARGETARCH @@ -36,5 +36,6 @@ RUN chown $USER:$GROUP /app USER $USER COPY --chown=$USER:$GROUP src/ . +RUN chmod +x /app/*.sh CMD ["sh", "entrypoint.sh"]