diff --git a/Dockerfile b/Dockerfile index 1e3be72..766a51d 100755 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ COPY requirements.txt /code/ WORKDIR /code # To avoid warning from flask dotenv. RUN touch .env +RUN pip install --upgrade pip +RUN pip install setuptools==67.8.0 RUN pip install --no-cache-dir -r requirements.txt # Only now copy the code into the container. Everything before this will be cached