Spaces:
Sleeping
Sleeping
File size: 574 Bytes
39030d2 385b9a1 81c639f 18fec70 ada6ba5 18fec70 ca99129 e9c6e66 81c639f ada6ba5 39030d2 20ec418 cb57909 95a0de5 7d03dcb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
FROM python:3.10-slim
RUN apt-get update && apt-get install gcc g++ git make -y
RUN useradd -m -u 1000 user
# Create the directory and set the permissions
RUN mkdir -p /home/langflow && chown user:user /home/langflow
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH \
LANGFLOW_DATABASE_URL=sqlite:////home/langflow/langflow.db \
LANGFLOW_AUTO_LOGIN=True
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
RUN pip install langflow>=0.6.12 -U --user
CMD python -m langflow run --host 0.0.0.0 --port 7860 --remove-api-keys --log-level debug
|