diff --git a/t/Dockerfile b/t/Dockerfile index 6669cb0..22ba96c 100644 --- a/t/Dockerfile +++ b/t/Dockerfile @@ -12,6 +12,11 @@ RUN apt-get install --assume-yes git abi-compliance-checker RUN echo './t/testrunner' >>/root/.bash_history +# Create files with mode 666 and folders with mode 777 which +# allows to delete the temporary files (aka results) for +# non-root users (like 'jenkins' or 'developer's laptop local user') +RUN echo 'umask 0' >>/root/.bashrc + WORKDIR /code/ ################################################################################