🐛 fix(Dockerfile): update CMD command to use 'run' subcommand for better clarity and consistency

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-10-08 18:45:05 -03:00
commit 32e45c6610

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"]