From d1d9159edf0f177b27859516e235e3b287c0c37f Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Wed, 18 Mar 2026 15:30:01 -0500 Subject: [PATCH] fix: restore Dockerfile to match card-evolution base after retarget PR retargeted from next-release to card-evolution. Restore the Dockerfile with correct COPY path and CMD from card-evolution base. Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c82c87f..8922bb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,6 @@ RUN pip install --no-cache-dir -r requirements.txt RUN playwright install chromium RUN playwright install-deps chromium -COPY ./app /app/app +COPY ./app /usr/src/app/app + +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]