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.
Jenkins calls docker like with a user mapping to the runner's user id:
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.