otavioLogspace commited on
Commit
674c3b3
·
1 Parent(s): 4c314c7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -17,7 +17,6 @@ WORKDIR $LANGFLOW_HOME
17
  COPY . .
18
 
19
  # Update the config.yaml file, build and install the langflow package
20
- RUN make -C $LANGFLOW_HOME/src/backend/langflow/ build \
21
- && pip install $LANGFLOW_HOME/src/backend/langflow/dist/*.tar.gz
22
 
23
  CMD ["langflow", "--host", "0.0.0.0", "--port", "7860"]
 
17
  COPY . .
18
 
19
  # Update the config.yaml file, build and install the langflow package
20
+ RUN make build && pip install $LANGFLOW_HOME/src/backend/langflow/dist/*.tar.gz
 
21
 
22
  CMD ["langflow", "--host", "0.0.0.0", "--port", "7860"]