Spaces:
Running
Running
File size: 332 Bytes
d202ada |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM langflowai/backend_build as backend_build
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install git -y
COPY --from=backend_build /app/dist/*.whl /app/
RUN pip install langflow-*.whl
RUN rm *.whl
EXPOSE 80
CMD [ "uvicorn", "--host", "0.0.0.0", "--port", "7860", "--factory", "langflow.main:create_app" ]
|