-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Remove distroless image generation #22583
Conversation
…icro image. Follow up of quarkusio#21557
Quarkus provides the `quay.io/quarkus/quarkus-distroless-image:1.0` image. | ||
It contains the required packages to run a native executable and is only **9Mb**. | ||
Just add your application on top of this image, and you will get a tiny container image. | ||
|
||
Distroless images should not be used in production without rigorous testing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wondering if we should remove this altogether and stop building the image?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We had requests to have one. It can still be useful even if you get a similar size (15Mb overhead) with the micro image.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Unless I'm mistaken, distroless is no option for AWS Lambda? The Quarkus lambda guide is also pulling public.ecr.aws/lambda/provided or public.ecr.aws/lambda/java:11 |
Fixes #21557.
Remove the distroless docker file generation in favor of micro.