triposr-3d / Dockerfile
NanoBotAgent
Replace TripoSR with Unlimited OCR MCP Server - FastMCP with eager-loaded Baidu Unlimited-OCR model
6068584
Raw
History Blame Contribute Delete
343 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
git curl libglib2.0-0 libsm6 libxext6 libxrender-dev libgl1 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PYTHONUNBUFFERED=1
CMD ["python", "server.py"]