- FastAPI service (port 8510) wrapping scraper + trust scorer - Playwright+Xvfb+stealth transport to bypass eBay Kasada bot protection - li.s-card selector migration (eBay markup change from li.s-item) - Three-layer caching: HTML (5min), phash (permanent), market comp (6h SQLite) - Batch DB writes (executemany + single commit) — warm requests <1s - Unique Xvfb display counter (:200–:299) prevents lock file collisions - Vue 3 nginx web service (port 8509) proxying /api/ to FastAPI - Auction card de-emphasis: opacity 0.72 for listings with >1h remaining - 35 scraper unit tests updated for new li.s-card fixture markup - tests/ volume-mounted in compose.override.yml for live test editing
25 lines
765 B
Docker
25 lines
765 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# System deps for Playwright/Chromium
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
xvfb \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install circuitforge-core from sibling directory (compose sets context: ..)
|
|
COPY circuitforge-core/ ./circuitforge-core/
|
|
RUN pip install --no-cache-dir -e ./circuitforge-core
|
|
|
|
# Install snipe
|
|
COPY snipe/ ./snipe/
|
|
WORKDIR /app/snipe
|
|
RUN pip install --no-cache-dir -e .
|
|
|
|
# Install Playwright + Chromium (after snipe deps so layer is cached separately)
|
|
RUN pip install --no-cache-dir playwright playwright-stealth && \
|
|
playwright install chromium && \
|
|
playwright install-deps chromium
|
|
|
|
EXPOSE 8510
|
|
CMD ["uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "8510"]
|