| FROM python:3.10-slim | |
| WORKDIR /app | |
| # Install system dependencies (all OpenGL + threading libs) | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| libsm6 \ | |
| libxext6 \ | |
| libxrender-dev \ | |
| libgl1 \ | |
| libglib2.0-0 \ | |
| libgthread-2.0-0 \ | |
| libc6 \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN useradd -m -u 1000 user | |
| USER user | |
| ENV PATH="/home/user/.local/bin:$PATH" | |
| COPY --chown=user requirements.txt requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
| COPY --chown=user . /app | |
| EXPOSE 7860 | |
| CMD ["python", "social_moderation/app.py"] | |