Update Dockerfile
Browse files- 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 |
|