From 848502a062970550e9b578be730270662cabd070 Mon Sep 17 00:00:00 2001 From: Michael Sauter Date: Fri, 22 Sep 2023 11:16:55 +0200 Subject: [PATCH] Ensure files are readable --- build/images/Dockerfile.node18-npm-toolset | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/images/Dockerfile.node18-npm-toolset b/build/images/Dockerfile.node18-npm-toolset index e35cff6..03f402e 100644 --- a/build/images/Dockerfile.node18-npm-toolset +++ b/build/images/Dockerfile.node18-npm-toolset @@ -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 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 +RUN chmod a+rx /usr/local/bin/build-npm && \ + chmod a+rx /usr/local/bin/cache-build && \ + chmod a+rx /usr/local/bin/copy-build-if-cached && \ + chmod a+rx /usr/local/bin/copy-artifacts VOLUME /workspace/source # Ensure that file permissions do not prevent Git checkout into workspace.