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