crate / crate-qa

CrateDB Quality Assurance
4 stars 1 forks source link

Add jenkins user to docker images #315

Closed mfussenegger closed 5 months ago

mfussenegger commented 5 months ago

Jenkins calls docker like with a user mapping to the runner's user id:

docker run -t -d -u 1001:1001 -w ...

If the user doesn't exist in the image, the fs permissions are messed up, which caused issues after trying to upgrade the GraalVM polyglot package in CrateDB. See https://github.com/crate/crate/pull/15769

Adding a jenkins user to the images should fix this.