LAP-DEV commited on
Commit
937a244
·
verified ·
1 Parent(s): f3d62e0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -11,8 +11,8 @@ COPY requirements.txt .
11
 
12
  RUN python3 -m venv venv && \
13
  . venv/bin/activate && \
14
- pip install -U -r requirements.txt
15
-
16
 
17
  FROM debian:bookworm-slim AS runtime
18
 
 
11
 
12
  RUN python3 -m venv venv && \
13
  . venv/bin/activate && \
14
+ pip install --upgrade pip setuptools wheel && \
15
+ pip install --no-build-isolation -r requirements.txt
16
 
17
  FROM debian:bookworm-slim AS runtime
18