| FROM python:3.10-slim |
|
|
| |
| RUN apt-get update && apt-get install -y \ |
| libgl1 \ |
| libglx0 \ |
| libegl1 \ |
| libdbus-1-3 \ |
| libxcursor1 \ |
| libxcomposite1 \ |
| libxdamage1 \ |
| libxrandr2 \ |
| libxtst6 \ |
| libpango-1.0-0 \ |
| libasound2 \ |
| libglib2.0-0 \ |
| git \ |
| && rm -rf /var/lib/apt/lists/* |
|
|
| |
| RUN useradd -m -u 1000 user |
| USER user |
| ENV PATH="/home/user/.local/bin:$PATH" |
|
|
| WORKDIR /app |
|
|
| |
| COPY --chown=user ./requirements.txt requirements.txt |
| RUN pip install --no-cache-dir --upgrade -r requirements.txt |
|
|
| |
| COPY --chown=user . . |
|
|
| |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |