Skip to content

Commit 4a55b99

Browse files
authored
Merge pull request #215 from Davda-James/fix/Dockerfile
Fixed the Dockerfile error of setuptools and wheel
2 parents aa2fe4d + 5c2f9eb commit 4a55b99

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)