From 96e3350cb7083a1fb2eeb50701f5dad57accf420 Mon Sep 17 00:00:00 2001 From: ruuushhh Date: Tue, 10 Feb 2026 13:19:02 +0530 Subject: [PATCH] fix: add fixed version for setuptools --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f3f4907..472a85c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ENV PYTHONUNBUFFERED 1 # Installing requirements COPY requirements.txt /tmp/requirements.txt -RUN pip install --upgrade pip && pip install -U pip wheel setuptools && pip install -r /tmp/requirements.txt && pip install pylint-django==2.3.0 +RUN pip install --upgrade pip && pip install -U pip wheel "setuptools==81.0.0" && pip install -r /tmp/requirements.txt && pip install pylint-django==2.3.0 # Copy Project to the container RUN mkdir -p /fyle-admin-settings