From 6dd75ba934e85c57e4b7e0d13aa4f0ffcda32d32 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 25 Mar 2025 02:04:04 +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-GLIBC-8658672 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-8658672 --- docker/Dockerfile-stable | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile-stable b/docker/Dockerfile-stable index 2860c4e0f0e..54fc0475319 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.10-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.10-slim AS final LABEL maintainer="psiinon@gmail.com" ARG DEBIAN_FRONTEND=noninteractive