FROM python:3.9-slim # Install necessary system dependencies and gnupg RUN apt-get update && apt-get install -y \ libgl1-mesa-glx \ libglib2.0-0 \ wget \ unzip \ curl \ ca-certificates \ gnupg \ fonts-liberation \ libnss3 \ libxss1 \ libappindicator1 \ libgbm-dev \ libgtk-3-0 \ # Install the dependencies for Scrapy gcc \ libffi-dev \ libxml2-dev \ libxslt1-dev \ libjpeg-dev \ zlib1g-dev \ && rm -rf /var/lib/apt/lists/* WORKDIR /code RUN mkdir -p /code/uploads && chmod 755 /code/uploads RUN mkdir -p /code/chroma_db && chmod 755 /code/chroma_db # Copy and install Python dependencies COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # Add and use a non-root user RUN useradd -ms /bin/sh myuser RUN chown -R myuser:myuser /code USER myuser COPY . /code # Default command to run the application CMD ["python", "app.py"]