yukee1992 commited on
Commit
1cda4ac
·
verified ·
1 Parent(s): b87852d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -7,4 +7,8 @@ RUN pip install --no-cache-dir -r requirements.txt
7
 
8
  COPY . .
9
 
10
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
 
7
 
8
  COPY . .
9
 
10
+ # Expose the port
11
+ EXPOSE 7860
12
+
13
+ # Run the app
14
+ CMD ["python", "app.py"]