From 29b5abf5a0092b7071d9073db4f2e1506f1e95a7 Mon Sep 17 00:00:00 2001 From: pinage404 Date: Thu, 2 Mar 2023 06:49:49 +0000 Subject: [PATCH] fix: packaging/AppImage/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-E2FSPROGS-2628459 - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-521063 - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-521199 - https://snyk.io/vuln/SNYK-DEBIAN11-GNUPG2-3330745 - https://snyk.io/vuln/SNYK-DEBIAN11-GNUTLS28-3318299 --- packaging/AppImage/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/AppImage/Dockerfile b/packaging/AppImage/Dockerfile index 51939222..35d7620b 100644 --- a/packaging/AppImage/Dockerfile +++ b/packaging/AppImage/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:bullseye-slim AS fetcher +FROM debian:11.6-slim AS fetcher WORKDIR /opt ADD https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage linuxdeploy.AppImage @@ -9,7 +9,7 @@ RUN chmod +x linuxdeploy.AppImage \ -FROM debian:bullseye-slim +FROM debian:11.6-slim RUN apt-get --quiet=2 update \ && apt-get --quiet=2 install --no-install-recommends \ -- GitLab