Spaces:
Runtime error
Runtime error
update pip install command
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -2,7 +2,7 @@ FROM python:3.10-slim
|
|
2 |
|
3 |
COPY requirements.txt .
|
4 |
|
5 |
-
RUN pip install --user --no-
|
6 |
|
7 |
COPY . .
|
8 |
|
|
|
2 |
|
3 |
COPY requirements.txt .
|
4 |
|
5 |
+
RUN pip install --user --no-cache-dir -r requirements.txt
|
6 |
|
7 |
COPY . .
|
8 |
|