Langflow / Dockerfile
otavioLogspace's picture
Update Dockerfile
de1a882 verified
raw
history blame
933 Bytes
FROM nikolaik/python-nodejs:python3.10-nodejs21
# Update and install required packages
RUN apt-get update && apt-get install gcc g++ git make -y
ENV LANGFLOW_HOME=/home/langflow \
PATH=/root/.local/bin:$PATH
# Clone the langflow repository and switch to the dev branch
ADD https://api.github.com/repos/logspace-ai/langflow/git/refs/heads/db version.json
RUN git clone https://github.com/logspace-ai/langflow.git $LANGFLOW_HOME \
&& cd $LANGFLOW_HOME \
&& git checkout hfFix
# Copy the code into the container
WORKDIR $LANGFLOW_HOME
COPY . .
# Create logs directory and set permissions
RUN mkdir logs && chmod 777 logs
# Set permissions for database folder
RUN chmod 777 /home/langflow
# Update the config.yaml file, build and install the langflow package
RUN make build && pip install dist/*.tar.gz
CMD ["langflow", "--host", "0.0.0.0", "--port", "7860", "--database-url", "sqlite:////home/langflow/langflow.db"]