From 5c2f9eba712f255ea506a14c19c067bf2da31d65 Mon Sep 17 00:00:00 2001 From: DavdaJames Date: Wed, 9 Apr 2025 20:23:03 +0530 Subject: [PATCH] wheel and setuptools are required before running RUN pip install --no-cache-dir -r requirements.txt which is missing in dockerfile and hence docker build was breaking in between build process --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0846eb3..a568969 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,10 @@ RUN poetry lock # Install dependencies RUN poetry export -f requirements.txt --without-hashes -o requirements.txt + +# Install wheel (required to build packages like fire) +RUN pip install --upgrade pip setuptools wheel + RUN pip install --no-cache-dir -r requirements.txt # Runtime stage