GabrielLogspace commited on
Commit
9da8c84
1 Parent(s): 23ea1f9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -24,6 +24,6 @@ RUN mkdir logs && chmod 777 logs
24
  RUN chmod 777 /home/langflow
25
 
26
  # Update the config.yaml file, build and install the langflow package
27
- RUN make setup_poetry && make build && pip install dist/*.whl
28
 
29
- CMD ["langflow","run", "--host", "0.0.0.0", "--port", "7860"]
 
24
  RUN chmod 777 /home/langflow
25
 
26
  # Update the config.yaml file, build and install the langflow package
27
+ RUN make setup_poetry && make install_frontend && make build_frontend && make install_backend
28
 
29
+ CMD ["make", "start", "host=0.0.0.0", "port=7860", "log_level=debug", "open_browser=false"]