Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
|
@@ -29,9 +29,7 @@ COPY ./requirements.txt /app/requirements.txt
|
|
| 29 |
|
| 30 |
# Install Python dependencies
|
| 31 |
RUN pip install --no-cache-dir --upgrade pip && \
|
| 32 |
-
pip install --no-cache-dir
|
| 33 |
-
pip install --no-cache-dir --no-deps -r /app/requirements.txt && \
|
| 34 |
-
pip install --no-cache-dir uvicorn[standard]
|
| 35 |
|
| 36 |
COPY . /app
|
| 37 |
|
|
|
|
| 29 |
|
| 30 |
# Install Python dependencies
|
| 31 |
RUN pip install --no-cache-dir --upgrade pip && \
|
| 32 |
+
pip install --no-cache-dir -r /app/requirements.txt
|
|
|
|
|
|
|
| 33 |
|
| 34 |
COPY . /app
|
| 35 |
|