Spaces:
No application file
No application file
File size: 1,096 Bytes
5b52d95 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# Use an official Python runtime as a parent image
FROM python:3.10-slim
# Install system dependencies including a C++ compiler
RUN apt-get update && apt-get install -y \
libmupdf-dev \
gcc \
g++ \
&& rm -rf /var/lib/apt/lists/*
# Set environment variables to ensure the Python output is not buffered
ENV PYTHONUNBUFFERED=1
# Set the correct HOME and PATH variables
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Create a new non-root user and set permissions
RUN useradd -m user
# Set the working directory in the container
WORKDIR $HOME/app
# Copy the current directory contents into the container's working directory
COPY . .
# Upgrade pip and install any needed packages specified in requirements.txt
RUN pip install --upgrade pip
# Upgrade pip and install packages using the legacy resolver
RUN pip install --default-timeout=1000 --no-cache-dir --use-deprecated=legacy-resolver -r requirements.txt
# Expose the port Chainlit runs on (by default Chainlit uses port 8000)
EXPOSE 8000
# Run the app
CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0"]
|