From 400f63d802a83bfe0a8ab0c4359f53fa99b3628e Mon Sep 17 00:00:00 2001 From: Atalya Alon <20992625+atalyaalon@users.noreply.github.com> Date: Thu, 15 Aug 2024 16:58:11 +0300 Subject: [PATCH] Update Dockerfile solution: https://github.com/pypa/setuptools/issues/4483 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 461709b..cfc18ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ RUN wget https://download.docker.com/linux/static/stable/x86_64/docker-25.0.1.tg mv docker/docker /usr/local/bin/ &&\ rm -rf docker docker-25.0.1.tgz RUN pip install --upgrade pip +RUN pip install -U setuptools[core] WORKDIR /srv COPY requirements.txt ./ RUN pip install -r requirements.txt