fryefeng commited on
Commit
3a013f1
·
verified ·
1 Parent(s): 3930398

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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", "7860"]
 
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"]