Use distroless/static image for webhook
The webhook image needlessly used the distroless image containing glibc. The webhook server is a static binary, so it can be packaged using the distroless/static image like the other components.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
FROM gcr.io/distroless/base:latest
|
FROM gcr.io/distroless/static:latest
|
||||||
LABEL maintainers="Kubernetes Authors"
|
LABEL maintainers="Kubernetes Authors"
|
||||||
LABEL description="Snapshot Validation Webhook"
|
LABEL description="Snapshot Validation Webhook"
|
||||||
ARG binary=./bin/snapshot-validation-webhook
|
ARG binary=./bin/snapshot-validation-webhook
|
||||||
|
Reference in New Issue
Block a user