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) <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2026-03-18 15:30:01 -05:00
parent db6f8d9b66
commit d1d9159edf

View File

@ -7,4 +7,6 @@ RUN pip install --no-cache-dir -r requirements.txt
RUN playwright install chromium RUN playwright install chromium
RUN playwright install-deps 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"]