healthtechbrasil commited on
Commit
e357624
·
1 Parent(s): 73383e0

Adiciona .env ao .gitignore

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. Dockerfile +0 -3
.gitignore CHANGED
@@ -1 +1,2 @@
1
  .env
 
 
1
  .env
2
+ .env
Dockerfile CHANGED
@@ -4,9 +4,6 @@ WORKDIR /app
4
 
5
  COPY . /app
6
 
7
- # Copiar variável de ambiente
8
- ENV HUGGINGFACE_HUB_TOKEN=${HUGGINGFACE_HUB_TOKEN}
9
-
10
  RUN pip install --no-cache-dir -r requirements.txt
11
 
12
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
4
 
5
  COPY . /app
6
 
 
 
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]