Fix CMD in Dockerfile (#1025)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-10-08 18:46:16 -03:00 committed by GitHub
commit 40eff45ffb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,4 +12,4 @@ WORKDIR $HOME/app
COPY --chown=user . $HOME/app
RUN pip install langflow>==0.0.86 -U --user
CMD ["python", "-m", "langflow", "--host", "0.0.0.0", "--port", "7860"]
CMD ["python", "-m", "langflow", "run", "--host", "0.0.0.0", "--port", "7860"]