From 9ebbd1463249f88cefed52ddc78da696c82571d4 Mon Sep 17 00:00:00 2001 From: Michael Sauter Date: Mon, 13 Nov 2023 09:27:16 +0100 Subject: [PATCH] Fix permissions of scripts --- build/images/Dockerfile.python-toolset | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/images/Dockerfile.python-toolset b/build/images/Dockerfile.python-toolset index abedd85..7d877ed 100644 --- a/build/images/Dockerfile.python-toolset +++ b/build/images/Dockerfile.python-toolset @@ -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.