diff --git a/t/Dockerfile b/t/Dockerfile index 5f72046..cac55de 100644 --- a/t/Dockerfile +++ b/t/Dockerfile @@ -14,6 +14,11 @@ RUN apt-get update && apt-get install --assume-yes lua5.1 lua-unit lua-lemock lu 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/ ################################################################################