Spaces:
Sleeping
Sleeping
| FROM langflowai/langflow:latest | |
| # Instale as dependências adicionais | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Instale python-dotenv para lidar com arquivos .env | |
| RUN pip install python-dotenv | |
| # Copie o arquivo .env para o container | |
| COPY .env .env |