Closed luisgomez214 closed 9 months ago
I had the same problem. I added the following lines in my Dockerfile:
RUN apt-get update -y && \
apt-get install -y python3-pip python3-dev
RUN pip3 install --upgrade pip==20.3.4 && \
pip3 install -r requirements.txt
ENTRYPOINT [ "python3" ]
When I use the command "docker build -t flask-tutorial:latest ." I get the following error:
I have tried updating and get:
I am not sure how to proceed.