MultiLLM-ChainLit / Dockerfile
Artin2009's picture
Update Dockerfile
a651f3e verified
raw
history blame
576 Bytes
FROM python:3.9
FROM node:19-slim
RUN apt-get update && \
apt-get install -y \
bash \
git git-lfs \
wget curl procps \
htop vim nano && \
rm -rf /var/lib/apt/lists/*
# RUN useradd -m -u 1000 user
# USER user
# ENV HOME=/home/user \
# PATH=/home/user/.local/bin:$PATH
WORKDIR /app
COPY --link ./ /app
RUN npm i
RUN chown 1000 /app
USER 1000
# COPY --chown=user . $HOME/app
# COPY ./requirements.txt ~/app/requirements.txt
RUN pip install -r requirements.txt
# COPY . .
CMD ["chainlit", "run", "chain_app.py", "--port", "7860" ,"-h"]