14 lines
315 B
Docker
14 lines
315 B
Docker
FROM logspace/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", "80", "langflow.backend.app:app" ]
|