jcnok commited on
Commit
6e9eb07
·
verified ·
1 Parent(s): 970dc89
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -8,4 +8,7 @@ RUN pip install --no-cache-dir -r requirements.txt
8
 
9
  COPY . .
10
 
11
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"]
 
 
 
 
8
 
9
  COPY . .
10
 
11
+ # Exponha a porta correta
12
+ EXPOSE 7860
13
+
14
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]