From 458637a96444de299aba3cea53c8b4055a8edbde Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 8 Aug 2023 17:10:17 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE312-ZLIB-2977082 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 056e84722..e35ca18e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY Cargo.toml Cargo.lock ./ COPY src/ src/ RUN cargo install --path . -FROM alpine:3.12 +FROM alpine:3.18.3 LABEL author="Hydragyrum " RUN addgroup -S rustscan && \ adduser -S -G rustscan rustscan && \