Langflow / Dockerfile
hieeus1402's picture
Create Dockerfile
1371161 verified
raw
history blame contribute delete
300 Bytes
FROM langflowai/langflow:latest
# Install FastAPI and Uvicorn
# ENV LANGFLOW_AUTO_LOGIN=False
COPY . .
EXPOSE 7860
# Command to start Langflow
# CMD ["langflow", "run", "--host", "0.0.0.0", "--port", "7860"]
CMD sh -c "export $(grep -v '^#' .env | xargs) && langflow run --host 0.0.0.0 --port 7860"