Merge pull request #215 from Davda-James/fix/Dockerfile

Fixed the Dockerfile error of setuptools and wheel
This commit is contained in:
Alexander Myasoedov
2025-04-09 19:56:08 +03:00
committed by GitHub
+4
View File
@@ -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