From 1e934957f5825f0b6bb535053c8bec342354c6af Mon Sep 17 00:00:00 2001 From: Jacques ROUSSEL Date: Thu, 26 Sep 2024 14:01:49 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A(backend)=20fix=20backend=20image?= =?UTF-8?q?=20vulnerabilities?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed vulnerabilities with setup tools found by the Trivy Scan. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7785dc7d..9aadc3f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.10-slim-bullseye as base # Upgrade pip to its latest release to speed up dependencies installation -RUN python -m pip install --upgrade pip +RUN python -m pip install --upgrade pip setuptools # Upgrade system packages to install security updates RUN apt-get update && \