Create Dockerfile

This commit is contained in:
Naveen Choudhary 2023-06-15 23:25:49 -05:00 committed by GitHub
commit ccaed1f3a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM python:3.10-slim
RUN apt-get update && apt-get install gcc g++ git make -y
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
RUN pip install langflow>==0.0.86 -U --user
CMD ["python", "-m", "langflow", "--host", "0.0.0.0", "--port", "7860"]