File size: 509 Bytes
3ac3fbf
 
 
 
 
 
 
 
 
 
bc54568
 
3ac3fbf
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM nikolaik/python-nodejs

RUN apt-get update && apt-get install -y gcc make

# install dependencies

# Clone ttp://github.com/logspace-ai/langfow.git and change to branch dev
ADD https://api.github.com/repos/logspace-ai/langflow/git/refs/heads/dev version.json
RUN git clone https://github.com/logspace-ai/langflow.git
WORKDIR /langflow
RUN git checkout dev && sed -i 's/dev: false/dev: true/' config.yaml
 && make build && pip install dist/*.tar.gz

CMD ["langflow", "--host", "0.0.0.0", "--port", "7860"]