File size: 731 Bytes
6d39dbe 206b1df cd42aa8 6d39dbe cd42aa8 206b1df cd42aa8 206b1df 8a513b5 | 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 | 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
# chumpy fix — must install before everything else
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"] |