From 7b51785a5be0cf57004aea33b1dae7b623d46a33 Mon Sep 17 00:00:00 2001 From: Raghavendra Talur Date: Fri, 26 Jan 2024 16:34:18 -0500 Subject: [PATCH] Dockerfile: Use the ubi-minimal image The new image size is 57% of the old image. UBI image was 284 MB. ubi-minimal image is 164 MB. Signed-off-by: Raghavendra Talur --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 98e9212be..c04dcc388 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ COPY controllers/ controllers/ # Build RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o manager main.go -FROM registry.access.redhat.com/ubi8/ubi +FROM registry.access.redhat.com/ubi8/ubi-minimal WORKDIR / COPY --from=builder /workspace/manager .