From 757b669460790bd48d1abfcb0ba7249e3d77d01b Mon Sep 17 00:00:00 2001 From: Oleg Atamanenko Date: Mon, 21 Dec 2020 14:52:54 -0800 Subject: [PATCH] Bump golang and busybox (#172) Signed-off-by: Oleg Atamanenko Co-authored-by: Shri Javadekar --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4d19db31..a0e7b2d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.15.3 as builder +FROM golang:1.15.6 as builder WORKDIR /workspace # Copy the Go Modules manifests @@ -23,7 +23,7 @@ RUN curl -L https://storage.googleapis.com/kubernetes-release/release/v1.14.10/b RUN chmod +x /usr/local/bin/kubectl # Add busybox -FROM busybox:1.31 as shelladder +FROM busybox:1.32.0 as shelladder # Use distroless as minimal base image to package the manager binary # Refer to https://github.com/GoogleContainerTools/distroless for more details