Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|