Skip to content

Commit

Permalink
fix: chmod +x for script files
Browse files Browse the repository at this point in the history
  • Loading branch information
rizlas committed Nov 25, 2024
1 parent 6fb8425 commit a694e13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ALPINE_VERSION
FROM alpine:$ALPINE_VERSION
FROM alpine:${ALPINE_VERSION:-3.20}

ARG TARGETOS
ARG TARGETARCH
Expand Down Expand Up @@ -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"]

0 comments on commit a694e13

Please sign in to comment.