Skip to content

Commit a694e13

Browse files
committed
fix: chmod +x for script files
1 parent 6fb8425 commit a694e13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ALPINE_VERSION
2-
FROM alpine:$ALPINE_VERSION
2+
FROM alpine:${ALPINE_VERSION:-3.20}
33

44
ARG TARGETOS
55
ARG TARGETARCH
@@ -36,5 +36,6 @@ RUN chown $USER:$GROUP /app
3636
USER $USER
3737

3838
COPY --chown=$USER:$GROUP src/ .
39+
RUN chmod +x /app/*.sh
3940

4041
CMD ["sh", "entrypoint.sh"]

0 commit comments

Comments
 (0)