Spaces:
Sleeping
Sleeping
File size: 285 Bytes
11d5583 2a99925 56e6341 |
1 2 3 4 5 6 7 8 9 10 11 |
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 |