Langflow / Dockerfile
IvanAmador's picture
Update Dockerfile
56e6341 verified
raw
history blame contribute delete
285 Bytes
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