Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -10,7 +10,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 10 |
|
| 11 |
# Copy the rest of the application
|
| 12 |
COPY . .
|
| 13 |
-
|
| 14 |
|
| 15 |
# Run the application
|
| 16 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 10 |
|
| 11 |
# Copy the rest of the application
|
| 12 |
COPY . .
|
| 13 |
+
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
|
| 14 |
|
| 15 |
# Run the application
|
| 16 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|