From b1a7629bd735fb350df2d70679141a9dd627d5c6 Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Fri, 23 Sep 2022 10:29:49 -0400 Subject: [PATCH] Pull from python3.9 base image & pip upgrade setuptools --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 36c42956..62945e1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9.13-slim-bullseye AS base +FROM python:3.9-slim-bullseye AS base ENV PYTHONUNBUFFERED=1 @@ -7,7 +7,7 @@ COPY requirements.txt . RUN apt-get update && apt-get install -y libmagic1 curl graphviz -RUN pip install --upgrade pip +RUN pip install --upgrade pip setuptools RUN pip install --no-cache-dir -r requirements.txt EXPOSE 8000 -- GitLab