Skip to content

Commit 5c2f9eb

Browse files
committed
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
1 parent aa2fe4d commit 5c2f9eb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ RUN poetry lock
1919

2020
# Install dependencies
2121
RUN poetry export -f requirements.txt --without-hashes -o requirements.txt
22+
23+
# Install wheel (required to build packages like fire)
24+
RUN pip install --upgrade pip setuptools wheel
25+
2226
RUN pip install --no-cache-dir -r requirements.txt
2327

2428
# Runtime stage

0 commit comments

Comments
 (0)