diff --git a/t/Dockerfile b/t/Dockerfile index 38a84ee4..02ae5aa2 100644 --- a/t/Dockerfile +++ b/t/Dockerfile @@ -13,6 +13,11 @@ RUN apt-get install --assume-yes python-yaml python-junitxml \ 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/ ################################################################################