Skip to content

Commit

Permalink
fix: try to add chmod statement
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kotzbauer <git@ckotzbauer.de>
  • Loading branch information
ckotzbauer committed Apr 26, 2022
1 parent 6cf3eea commit 4e2dee4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion job-images/cas/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ COPY --from=cas /bin/cas /bin/cas
COPY entrypoint.sh /

RUN mkdir .cas && \
apk add --no-cache jq bash
apk add --no-cache jq bash && \
chmod +x /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]
3 changes: 2 additions & 1 deletion job-images/vcn/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ COPY --from=vcn /bin/vcn /bin/vcn
COPY entrypoint.sh /

RUN mkdir .vcn && \
apk add --no-cache jq bash
apk add --no-cache jq bash && \
chmod +x /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 4e2dee4

Please sign in to comment.