Skip to content

Commit

Permalink
Fix permissions of scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Nov 13, 2023
1 parent aa75254 commit 9ebbd14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/images/Dockerfile.python-toolset
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ COPY build/images/scripts/build.sh /usr/local/bin/build-python
ADD https://raw.githubusercontent.com/opendevstack/ods-pipeline/v0.14.0.1/build/images/scripts/cache-build.sh /usr/local/bin/cache-build
ADD https://raw.githubusercontent.com/opendevstack/ods-pipeline/v0.14.0.1/build/images/scripts/copy-build-if-cached.sh /usr/local/bin/copy-build-if-cached
ADD https://raw.githubusercontent.com/opendevstack/ods-pipeline/v0.14.0.1/build/images/scripts/copy-artifacts.sh /usr/local/bin/copy-artifacts
RUN chmod +x /usr/local/bin/build-python && \
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 +rx /usr/local/bin/build-python && \
chmod +rx /usr/local/bin/cache-build && \
chmod +rx /usr/local/bin/copy-build-if-cached && \
chmod +rx /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 9ebbd14

Please sign in to comment.