From 0838835db183d6eeeb47748ec949cc1f2af42824 Mon Sep 17 00:00:00 2001 From: ekneg54 Date: Fri, 16 Aug 2024 10:07:40 +0200 Subject: [PATCH] exclude setuptools from build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fb36e9c64..f5e2f8a12 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,10 +8,10 @@ ARG no_proxy ADD . /logprep WORKDIR /logprep +RUN python -m pip install --upgrade pip wheel setuptools>=72.2.0 RUN python -m venv /opt/venv # Make sure we use the virtualenv: ENV PATH="/opt/venv/bin:$PATH" -RUN python -m pip install --upgrade pip wheel setuptools RUN if [ "$LOGPREP_VERSION" = "dev" ]; then pip install .;\ elif [ "$LOGPREP_VERSION" = "latest" ]; then pip install git+https://github.com/fkie-cad/Logprep.git@latest; \