Langflow / Dockerfile
Gabriel Luiz Freitas Almeida
Update Dockerfile
a360a30
raw
history blame
169 Bytes
FROM python:3.10-slim
RUN apt-get update && apt-get install gcc git make -y
RUN pip install langflow>=0.0.45 -U
CMD ["langflow", "--host", "0.0.0.0", "--port", "7860"]