-
-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: Error building with temurin-17: adduser not found #606
Comments
Same error, with addgroup |
I circumvented the problem by using groupadd It is not a dropin replacement but is pretty easy to do
|
+1 with addgroup |
I tried openjdk-java:17 and the issue persisted. Might not be related to temurin |
From what I understand, this commit from 2 week ago changed the default base image from Ubuntu focal (20.04) to Ubuntu noble (24.04). The official |
With |
Hi all, thanks for raising this issue, this is due to the change of the latest tag from jammy to noble. As @darioseidl correctly points out you can stay on the older Ubuntu base using An alternative in noble would be to install the adduser package: FROM eclipse-temurin:17
RUN apt-get update && apt-get install -y adduser
# rest of your code |
Thanks for all the help everyone. I’m now closing the issue. |
Please add the exact image (with tag) that you are using
eclipse-temurin:17
Please add the version of Docker you are running
docker:20.10.16
What happened?
Our Dockerfile contains the following
This has been working fine but this morning we couldn't run any of our builds as all of them failed with the following
Can anyone help on this?
Many thanks,
Vedat
Relevant log output
No response
The text was updated successfully, but these errors were encountered: