You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The purpose of the distroless docker image is to be as lightweight as possible; for the benefit of developers it reduces the number of security vulnerabilities that creep in over time.
But the image still includes more libraries than we need. I can inspect what libraries get linked at run time by looking in the file /proc/<PID>/maps. It tells me we need all of these libs:
The purpose of the distroless docker image is to be as lightweight as possible; for the benefit of developers it reduces the number of security vulnerabilities that creep in over time.
But the image still includes more libraries than we need. I can inspect what libraries get linked at run time by looking in the file
/proc/<PID>/maps
. It tells me we need all of these libs:...plus jvm libs but no others! I propose to amend the distroless docker image to remove all other
.so
files.The text was updated successfully, but these errors were encountered: