Rootless Container with Paketo
plugins {
id 'com.google.cloud.tools.jib' version '2.6.0'
}
jib {
to {
image = 'andifalk/hello-rootless-jib:latest'
}
container {
user = 1002
}
}docker container run --rm --detach --name hello-rootless-jib \
-p 8080:8080 andifalk/hello-rootless-jib:latest
docker exec hello-rootless-jib whoamiCheck image for Vulnerabilities
Next
Last updated