You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The build folder is generated with the root owner
To delete it we need to use sudo
That is not nice for a CI/CD
Could you change the Dockerfile to generate the build folder with the current user as owner?
The text was updated successfully, but these errors were encountered:
I used this blog post to solve a similar issue for me.
Basically add the following option to the docker command -u $(id -u ${USER}):$(id -g ${USER})
So in your case
Hello
Using this command line for build:
The build folder is generated with the root owner
To delete it we need to use
sudo
That is not nice for a CI/CD
Could you change the Dockerfile to generate the build folder with the current user as owner?
The text was updated successfully, but these errors were encountered: