LAP-DEV commited on
Commit
9fffdb6
·
verified ·
1 Parent(s): 3224da0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -12,7 +12,7 @@ COPY requirements.txt .
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
 
 
12
  RUN python3 -m venv venv && \
13
  . venv/bin/activate && \
14
  pip install --upgrade pip setuptools wheel && \
15
+ pip install --no-build-isolation --no-cache-dir -r requirements.txt
16
 
17
  FROM debian:bookworm-slim AS runtime
18