From 3f666063f2dc123913387d649435d3a63401da26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Sep 2022 20:07:19 +0000 Subject: [PATCH] build(deps): bump debian in /docker/cluster-test Bumps debian from buster-20210311 to buster-20220912. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docker/cluster-test/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/cluster-test/Dockerfile b/docker/cluster-test/Dockerfile index 2e0e06a62fdc..24f65085363b 100644 --- a/docker/cluster-test/Dockerfile +++ b/docker/cluster-test/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:buster-20210311@sha256:9d4ab94af82b2567c272c7f47fa1204cd9b40914704213f1c257c44042f82aac AS toolchain +FROM debian:buster-20220912@sha256:2f35b84014a5389e2a940113c51586bc067a05040ba181dee92c5a9fa9b15dcb AS toolchain # To use http/https proxy while building, use: # docker build --build-arg https_proxy=http://fwdproxy:8080 --build-arg http_proxy=http://fwdproxy:8080 @@ -22,7 +22,7 @@ COPY . /diem RUN ./docker/build-common.sh -FROM debian:buster-20210311@sha256:9d4ab94af82b2567c272c7f47fa1204cd9b40914704213f1c257c44042f82aac +FROM debian:buster-20220912@sha256:2f35b84014a5389e2a940113c51586bc067a05040ba181dee92c5a9fa9b15dcb RUN apt-get update && apt-get install -y libssl1.1 openssh-client wget && apt-get clean && rm -r /var/lib/apt/lists/* RUN cd /usr/local/bin && wget "https://storage.googleapis.com/kubernetes-release/release/v1.17.0/bin/linux/amd64/kubectl" -O kubectl && chmod +x kubectl