dipeshtech/10k_llm_streamlit
0
1FROM python:3.11-slim-bullseye2RUN useradd -m -u 1000 user3USER user4ENV HOME=/home/user \5 PATH=/home/user/.local/bin:$PATH6WORKDIR $HOME/app7COPY --chown=user . $HOME/app8COPY ./requirements.txt ~/app/requirements.txt9RUN pip config --user set global.progress_bar off10RUN pip install -r requirements.txt --progress-bar off11COPY . .12CMD ["streamlit", "run", "app.py", "--server.port", "7860"]13 