From 221b87c95f8dc91904259218594f586edaeffe52 Mon Sep 17 00:00:00 2001 From: Francisco Augusto Date: Mon, 12 Jun 2023 15:54:57 +0200 Subject: [PATCH] Fix docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7164283dc1..22fd3d92be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \ ENTRYPOINT [ "/start.sh", "/workspace/manager" ] # Copy the controller-manager into a thin image -FROM alpine:3.11 +FROM golang:1.19.5 WORKDIR / COPY --from=builder /workspace/manager . # Use uid of nonroot user (65532) because kubernetes expects numeric user when applying pod security policies