In docker fails to do request to a python official docker image
I use dockerfile to build image and container. I haven't changed anything. But from yesterday, I cannot build it. My docker file is FROM python:3.8-slim-buster WORKDIR /src COPY requirements.txt /src RUN pip install -r requirements.txt COPY app/ /src/app ENV PYTHONPATH=/src…