Skip to content

Commit

Permalink
Ensure file is executable by all
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Sep 22, 2023
1 parent 01f26c5 commit c3c8e58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/images/Dockerfile.node18-npm-toolset
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ COPY build/images/scripts/build.sh /usr/local/bin/build-npm
ADD https://raw.githubusercontent.com/opendevstack/ods-pipeline/master/build/package/scripts/cache-build.sh /usr/local/bin/cache-build
ADD https://raw.githubusercontent.com/opendevstack/ods-pipeline/master/build/package/scripts/copy-build-if-cached.sh /usr/local/bin/copy-build-if-cached
ADD https://raw.githubusercontent.com/opendevstack/ods-pipeline/master/build/package/scripts/copy-artifacts.sh /usr/local/bin/copy-artifacts
RUN chmod +x /usr/local/bin/build-npm && \
chmod +x /usr/local/bin/cache-build && \
chmod +x /usr/local/bin/copy-build-if-cached && \
chmod +x /usr/local/bin/copy-artifacts
RUN chmod a+x /usr/local/bin/build-npm && \
chmod a+x /usr/local/bin/cache-build && \
chmod a+x /usr/local/bin/copy-build-if-cached && \
chmod a+x /usr/local/bin/copy-artifacts

VOLUME /workspace/source
# Ensure that file permissions do not prevent Git checkout into workspace.
Expand Down

0 comments on commit c3c8e58

Please sign in to comment.