CoolFace
Apppublic

ahncs/htmllm

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM python:3.11.92RUN useradd -m -u 1000 user3USER user4ENV HOME=/home/user \5    PATH=/home/user/.local/bin:$PATH6RUN mkdir -p $HOME/app/data/vectorstore && chown -R user:user $HOME/app/data7WORKDIR $HOME/app8COPY --chown=user . $HOME/app9COPY ./requirements.txt ~/app/requirements.txt10RUN pip install -r requirements.txt11COPY . .12CMD ["chainlit", "run", "app.py", "--port", "7860"]