Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -3,7 +3,8 @@ FROM python:3.9-slim
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
COPY requirements.txt .
|
6 |
-
RUN pip install --no-cache-dir
|
|
|
7 |
|
8 |
COPY . .
|
9 |
|
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
COPY requirements.txt .
|
6 |
+
RUN pip install --no-cache-dir --upgrade pip && \
|
7 |
+
pip install --no-cache-dir -r requirements.txt
|
8 |
|
9 |
COPY . .
|
10 |
|