From cd260424e2f669ce58ee7ab5e85dbd9887a7e42d Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 1 Mar 2023 22:23:46 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-GNUPG2-3330745 - https://snyk.io/vuln/SNYK-DEBIAN11-GNUTLS28-3318299 - https://snyk.io/vuln/SNYK-DEBIAN11-KRB5-524883 - https://snyk.io/vuln/SNYK-DEBIAN11-KRB5-524883 - https://snyk.io/vuln/SNYK-DEBIAN11-LIBGCRYPT20-1297892 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d1ae20..4d86a1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN cargo build --locked --release --all RUN cargo test --locked --release --all RUN cargo install --locked --path . -FROM debian:bullseye-slim as final +FROM debian:11.6-slim as final RUN apt update && apt dist-upgrade -y && apt clean