Spaces:
Runtime error
Runtime error
Commit ·
682aa43
1
Parent(s): ba3b4a1
build: fix run path
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -25,5 +25,5 @@ RUN uv sync
|
|
| 25 |
# Expose the port
|
| 26 |
EXPOSE 7860
|
| 27 |
|
| 28 |
-
# Run the app
|
| 29 |
-
CMD ["uv", "run", "chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 25 |
# Expose the port
|
| 26 |
EXPOSE 7860
|
| 27 |
|
| 28 |
+
# Run the app - updated path to src/app.py
|
| 29 |
+
CMD ["uv", "run", "chainlit", "run", "src/app.py", "--host", "0.0.0.0", "--port", "7860"]
|