Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -8,7 +8,9 @@ RUN mkdir /.cache && chmod -R 777 /.cache
|
|
| 8 |
|
| 9 |
WORKDIR /app
|
| 10 |
|
|
|
|
|
|
|
| 11 |
RUN uv sync
|
| 12 |
|
| 13 |
# Command to run the application
|
| 14 |
-
CMD ["uv", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 8 |
|
| 9 |
WORKDIR /app
|
| 10 |
|
| 11 |
+
EXPOSE 8000
|
| 12 |
+
|
| 13 |
RUN uv sync
|
| 14 |
|
| 15 |
# Command to run the application
|
| 16 |
+
CMD ["uv", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|