elanuk commited on
Commit
139f05b
·
verified ·
1 Parent(s): 5d586e2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -6,7 +6,8 @@ COPY . /app
6
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
- # gradio port
10
- EXPOSE 7860
11
 
12
- CMD ["python", "app.py"]
 
 
6
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
+ # Expose both ports
10
+ EXPOSE 7860 8000
11
 
12
+ # Run server.py
13
+ CMD ["python", "server.py"]