diff --git a/t/Dockerfile b/t/Dockerfile index c44f321..8be9f4a 100644 --- a/t/Dockerfile +++ b/t/Dockerfile @@ -20,6 +20,11 @@ RUN echo 'prove -I /code/lib -v --color -l --formatter TAP::Formatter::JUnit' >> RUN echo 'prove -I /code/lib --color -l' >>/root/.bash_history 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/ ################################################################################