# Docker Space for the Liquidspell demo: FastAPI backend + static frontend (no Gradio). # Pinned to the stack the model was validated against (the encoder's bidirectional-mask remote code is # transformers-version sensitive — see server.py). FROM python:3.12-slim # non-root user (HF Spaces convention; gives a writable HOME for the HF cache) RUN useradd -m -u 1000 user USER user ENV HOME=/home/user \ PATH=/home/user/.local/bin:$PATH \ HF_HOME=/home/user/.cache/huggingface \ PYTHONUNBUFFERED=1 WORKDIR /home/user/app # CPU-only torch first (default PyPI wheel is CUDA and huge) — matches the validated 2.12.0. RUN pip install --no-cache-dir --user torch==2.12.0 --index-url https://download.pytorch.org/whl/cpu COPY --chown=user requirements.txt . RUN pip install --no-cache-dir --user -r requirements.txt COPY --chown=user . . EXPOSE 7860 CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]