mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-07-06 11:47:48 +02:00
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
This commit is contained in:
@@ -19,6 +19,10 @@ RUN poetry lock
|
|||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
RUN poetry export -f requirements.txt --without-hashes -o requirements.txt
|
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
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
# Runtime stage
|
# Runtime stage
|
||||||
|
|||||||
Reference in New Issue
Block a user