docker image python3.10 and python3-pip always have a security vulnerability

Question:

I always get the
security-tracker.debian.org/tracker/CVE-2015-20107 error,
even if i just have this commands for docker file
is there a way to fix this.

FROM debian:stable 
RUN apt-get update && apt-get install -y --no-install-recommends  
python3.10 
python3-pip
Asked By: addy

||

Answers:

The link you’ve shown also informs you that the vulnerable package is fixed in python 3.10.7, which is available in debian sid. Either switch your docker image to sid, or just ignore the warning and make sure any application you are running is not using the affected module.

Answered By: smac89
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.