From a2dca0c7b08f8aa473031f7e65dde2a2d3e22ce8 Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Tue, 16 Feb 2021 08:39:53 -0800 Subject: [PATCH] Update debian base images to buster-20210208-slim (#5750) Before the upcoming stable release, we should update our base images to use the most recent Debian images to pick up any security fixes that may have been addressed. This change updates all o four debian images to use the `buster-20210208-slim` tag. --- Dockerfile-debug | 2 +- Dockerfile-proxy | 2 +- cni-plugin/Dockerfile | 2 +- web/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile-debug b/Dockerfile-debug index bd5cea5ba..805efd605 100644 --- a/Dockerfile-debug +++ b/Dockerfile-debug @@ -1,4 +1,4 @@ -FROM debian:buster-20201117-slim +FROM debian:buster-20210208-slim RUN apt-get update && apt-get install -y --no-install-recommends \ curl \ dnsutils \ diff --git a/Dockerfile-proxy b/Dockerfile-proxy index d6d7b04ce..d41298402 100644 --- a/Dockerfile-proxy +++ b/Dockerfile-proxy @@ -1,4 +1,4 @@ -ARG RUNTIME_IMAGE=debian:buster-20201117-slim +ARG RUNTIME_IMAGE=debian:buster-20210208-slim ARG BUILDPLATFORM=linux/amd64 # Precompile key slow-to-build dependencies diff --git a/cni-plugin/Dockerfile b/cni-plugin/Dockerfile index 89dbe02e3..408b2a614 100644 --- a/cni-plugin/Dockerfile +++ b/cni-plugin/Dockerfile @@ -18,7 +18,7 @@ COPY cni-plugin cni-plugin ARG TARGETARCH RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH go build -o /go/bin/linkerd-cni -v -mod=readonly ./cni-plugin/ -FROM debian:buster-20201117-slim +FROM debian:buster-20210208-slim WORKDIR /linkerd RUN apt-get update && apt-get install -y --no-install-recommends \ iptables \ diff --git a/web/Dockerfile b/web/Dockerfile index 502e49dc4..ac4987e11 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -47,7 +47,7 @@ ARG TARGETARCH RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH go build -mod=readonly -o web/web -ldflags "-s -w" ./web ## package it all up -FROM debian:buster-20201117-slim +FROM debian:buster-20210208-slim WORKDIR /linkerd COPY LICENSE .