| FROM python:3.11-slim |
|
|
| RUN apt-get update && apt-get install -y --no-install-recommends \ |
| git \ |
| git-lfs \ |
| libgl1 \ |
| libglib2.0-0 \ |
| libsm6 \ |
| libxext6 \ |
| libxrender1 \ |
| libgomp1 \ |
| libosmesa6 \ |
| ffmpeg \ |
| wget \ |
| && rm -rf /var/lib/apt/lists/* |
|
|
| WORKDIR /app |
|
|
| RUN pip install --no-cache-dir --upgrade pip setuptools wheel |
|
|
| |
| RUN pip install --no-cache-dir --no-build-isolation chumpy==0.70 |
|
|
| COPY requirements.txt . |
| RUN pip install --no-cache-dir -r requirements.txt |
|
|
| COPY . . |
|
|
| ENV PYTHONPATH="/app/WiLoR:${PYTHONPATH}" |
| ENV PYOPENGL_PLATFORM=osmesa |
| ENV MODE=full |
|
|
|
|
| EXPOSE 7860 |
|
|
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |