LAP-DEV commited on
Commit
77d28cb
·
verified ·
1 Parent(s): 00ffc31

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 --no-cache-dir -U wheel && \
15
+ pip install --no-build-isolation --no-cache-dir -U -r requirements.txt
16
 
17
  FROM debian:bookworm-slim AS runtime
18