From 6c7c20114707eaa056fae03cc6931630792eb410 Mon Sep 17 00:00:00 2001 From: Francisco Augusto Date: Wed, 14 Jun 2023 11:16:56 +0200 Subject: [PATCH] Fix vulnerabilities --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index d6493f6306..beba7407f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,7 @@ ENTRYPOINT [ "/start.sh", "/workspace/manager" ] # Copy the controller-manager into a thin image FROM alpine:3.18 +RUN apk update && apk add --upgrade libcrypto3 libssl3 WORKDIR / COPY --from=builder /workspace/manager . # Use uid of nonroot user (65532) because kubernetes expects numeric user when applying pod security policies