From acca6172adbec2cc45b6211dbf32f52b106ea0fb Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 3 Mar 2025 22:53:57 +0000 Subject: [PATCH] fix: docker/Dockerfile-stable to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-8705121 - https://snyk.io/vuln/SNYK-DEBIAN12-LIBTASN16-8689970 - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 - https://snyk.io/vuln/SNYK-DEBIAN12-LIBCAP2-8732577 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-5733385 --- docker/Dockerfile-stable | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile-stable b/docker/Dockerfile-stable index 2860c4e0f0e..a28183f2260 100644 --- a/docker/Dockerfile-stable +++ b/docker/Dockerfile-stable @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 # This dockerfile builds the zap stable release -FROM --platform=linux/amd64 debian:12.8-slim AS builder +FROM --platform=linux/amd64 debian:12.9-slim AS builder RUN apt-get update && apt-get install -q -y --fix-missing \ wget \ @@ -34,7 +34,7 @@ RUN --mount=type=secret,id=webswing_url \ # Remove Webswing bundled examples rm -Rf webswing/apps/ -FROM debian:12.8-slim AS final +FROM debian:12.9-slim AS final LABEL maintainer="psiinon@gmail.com" ARG DEBIAN_FRONTEND=noninteractive