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>
13 lines
298 B
Docker
13 lines
298 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 /usr/src/app/app
|
|
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
|