mirror of https://github.com/linkerd/linkerd2.git
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.
This commit is contained in:
parent
74650ec253
commit
a2dca0c7b0
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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 .
|
||||
|
|
Loading…
Reference in New Issue