feat: adding host param and docker example for deployment

This commit is contained in:
Gabriel Almeida 2023-03-15 16:09:34 -03:00
commit f798b7db19
3 changed files with 20 additions and 2 deletions

View file

@ -0,0 +1,8 @@
FROM python:3.11-slim
WORKDIR /app
COPY ./ /app
RUN pip install langflow
EXPOSE 5003
CMD ["langflow", "--host", "0.0.0.0"]