Skip to content

Commit

Permalink
Override permission on script files
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-vinot-sonarsource committed May 15, 2024
1 parent 00a7a73 commit 0efac9e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ ENV LC_ALL="C.UTF-8"

WORKDIR /opt

USER 0

# Prepare entrypoint
COPY test/assertFileContains /test/assertFileContains
RUN chmod +x /test/assertFileContains
COPY test/assertFileExists /test/assertFileExists
RUN chmod +x /test/assertFileExists
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
COPY cleanup.sh /cleanup.sh
Expand Down

0 comments on commit 0efac9e

Please sign in to comment.