jcnok commited on
Commit
b7d304d
·
verified ·
1 Parent(s): f2e1369

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,5 +3,5 @@ WORKDIR /app
3
  # Copie o arquivo de requisitos
4
  COPY requirements.txt .
5
  RUN pip install --no-cache-dir -r requirements.txt
6
- COPY ./app /app
7
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
3
  # Copie o arquivo de requisitos
4
  COPY requirements.txt .
5
  RUN pip install --no-cache-dir -r requirements.txt
6
+ COPY ./app .
7
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]