GabrielLogspace commited on
Commit
80c36ab
1 Parent(s): e306464

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -23
Dockerfile CHANGED
@@ -1,23 +1 @@
1
- FROM python:3.10-slim
2
-
3
- RUN apt-get update && apt-get install gcc g++ git make -y
4
- RUN useradd -m -u 1000 user
5
-
6
- # Create the directory and set the permissions
7
- RUN mkdir -p /home/langflow && chown user:user /home/langflow
8
-
9
- USER user
10
- ENV HOME=/home/user \
11
- PATH=/home/user/.local/bin:$PATH \
12
- LANGFLOW_DATABASE_URL=sqlite:////home/langflow/langflow.db \
13
- LANGFLOW_AUTO_LOGIN=True
14
-
15
-
16
- WORKDIR $HOME/app
17
-
18
- COPY --chown=user . $HOME/app
19
-
20
- RUN pip install langflow>=0.6.12 -U --user
21
-
22
-
23
- CMD python -m langflow run --host 0.0.0.0 --port 7860 --log-level debug
 
1
+ FROM langflowai/langflow:latest