- Mirror the batter_id is None guard in _build_pitching_groups() so that a StratPlay row with a null pitcher_id is skipped rather than creating a None key in the groups dict (which would fail on the NOT NULL FK constraint during upsert). - Revert Dockerfile to the next-release base: drop the COPY path change and CMD addition that were already merged in PR #101 and are unrelated to the ProcessedGame ledger feature. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
220 B
Docker
11 lines
220 B
Docker
FROM python:3.11-slim-bookworm
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
RUN playwright install chromium
|
|
RUN playwright install-deps chromium
|
|
|
|
COPY ./app /app/app
|