Spaces:
Sleeping
Sleeping
| 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" |