LibRAG / Dockerfile
daniel Foley
Initial sample chainlit
bfd18d6
raw
history blame
748 Bytes
FROM python:3.9
# Create a non-root user
RUN useradd -m -u 1000 user
USER user
# Set PATH to include user's local bin
ENV PATH="/home/user/.local/bin:$PATH"
# Set working directory
WORKDIR /app
# Copy requirements file with appropriate ownership
COPY --chown=user ./requirements.txt requirements.txt
# Install dependencies
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# Copy application files with appropriate ownership
COPY --chown=user . /app
# Set environment variables for Chainlit
ENV HOST=0.0.0.0
ENV PORT=7860
ENV CHAINLIT_SERVER_PORT=7860
ENV CHAINLIT_HOST="0.0.0.0"
# Change the CMD to use chainlit
CMD ["chainlit", "run", "app.py"]