How to fix CVE-2021-33574 [closed]
I’m scanning my docker image using Tirvy for vulnerabilities. This is my Dockerfile
FROM python:3.10-slim
ARG PORT=5000
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get upgrade -y
RUN pip3 install -r requirements.txt