🔒️(trivy) fix vulnerability about jaraco.context

We got a vulnerability report from Trivy about
jaraco.context package. It comes from setuptools.
setuptools does not seems used by the application.
We removed it.
This commit is contained in:
Anthony LC
2026-01-16 12:43:02 +01:00
parent 75f71368f4
commit f199acf6c2
2 changed files with 6 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
FROM python:3.13.3-alpine AS base
# Upgrade pip to its latest release to speed up dependencies installation
RUN python -m pip install --upgrade pip setuptools
RUN python -m pip install --upgrade pip
# Upgrade system packages to install security updates
RUN apk update && apk upgrade --no-cache