Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -7,5 +7,5 @@ COPY requirements.txt /app/requirements.txt
|
|
| 7 |
WORKDIR /app
|
| 8 |
|
| 9 |
# Install the Python packages from requirements.txt
|
| 10 |
-
RUN pip install -r requirements.txt
|
| 11 |
CMD pip uninstall -y autotrain-advanced && pip install -U autotrain-advanced && uvicorn autotrain.app:app --host 0.0.0.0 --port 7860 --reload --workers 4
|
|
|
|
| 7 |
WORKDIR /app
|
| 8 |
|
| 9 |
# Install the Python packages from requirements.txt
|
| 10 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 11 |
CMD pip uninstall -y autotrain-advanced && pip install -U autotrain-advanced && uvicorn autotrain.app:app --host 0.0.0.0 --port 7860 --reload --workers 4
|