ui-copilot / Dockerfile
ksri77's picture
chore: deploy from CI
0b3a064 verified
Raw
History Blame Contribute Delete
1.12 kB
FROM python:3.11-slim
WORKDIR /app
# Build tools for C-extension wheels + OpenCV runtime libs
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
libglib2.0-0 \
libsm6 \
libxrender1 \
libxext6 \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Install Playwright's Chromium browser for JS-rendered SPA analysis.
# --with-deps installs all required system libs in one shot.
RUN pip install --no-cache-dir playwright \
&& playwright install chromium --with-deps
# Optional: CLIP similarity scoring (Module 3b).
# sentence-transformers + PyTorch adds ~2 GB — install separately so a
# failure here never breaks the core app (benchmark returns available:false).
RUN pip install --no-cache-dir sentence-transformers || \
echo "sentence-transformers unavailable — benchmark scoring disabled"
COPY . .
# HuggingFace Spaces persistent storage mounts at /data
ENV DB_PATH=/data/uicopilot.db
EXPOSE 7860
CMD ["uvicorn", "backend.api.main:app", "--host", "0.0.0.0", "--port", "7860"]