IvanAmador commited on
Commit
56e6341
·
verified ·
1 Parent(s): 10b2396

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -2,4 +2,10 @@ FROM langflowai/langflow:latest
2
 
3
  # Instale as dependências adicionais
4
  COPY requirements.txt .
5
- RUN pip install --no-cache-dir -r requirements.txt
 
 
 
 
 
 
 
2
 
3
  # Instale as dependências adicionais
4
  COPY requirements.txt .
5
+ RUN pip install --no-cache-dir -r requirements.txt
6
+
7
+ # Instale python-dotenv para lidar com arquivos .env
8
+ RUN pip install python-dotenv
9
+
10
+ # Copie o arquivo .env para o container
11
+ COPY .env .env