jib
jib copied to clipboard
When will support Java 21 be added?
trafficstars
Environment:
- Jib version: 3.4.0
- Build tool: Gradle
- OS: Mac
Description of the issue: When will support for building Java 21 be available?
FWIW, I managed to get it working by explicitly specifying a jre image name to use as a base
jib {
from {
image = "eclipse-temurin:21-jre"
}
}
FWIW, I managed to get it working by explicitly specifying a jre image name to use as a base
jib { from { image = "eclipse-temurin:21-jre" } }
Are your containers running with root after using from ?
I also had the same problem and when I specified the images explicitly, the jib containers are running with root user.