KJ24 commited on
Commit
d2fd474
·
verified ·
1 Parent(s): d00f6f0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -15,4 +15,8 @@ RUN pip install --no-cache-dir -r requirements.txt
15
 
16
  COPY app.py .
17
 
18
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
 
15
 
16
  COPY app.py .
17
 
18
+ # CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
19
+
20
+ EXPOSE 80
21
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]
22
+