From d8d1b2ac2f816d344003478edf32034c935cdbca Mon Sep 17 00:00:00 2001 From: cal Date: Tue, 17 Mar 2026 20:05:54 +0000 Subject: [PATCH] fix: correct COPY path and add CMD in Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - COPY ./app /app/app → /usr/src/app/app (matches WORKDIR) - Add CMD for uvicorn startup (was missing, inheriting python3 no-op from base image) --- Dockerfile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index c82c87f..0949774 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1 @@ -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 +RlJPTSBweXRob246My4xMS1zbGltLWJvb2t3b3JtCgpXT1JLRElSIC91c3Ivc3JjL2FwcAoKQ09QWSByZXF1aXJlbWVudHMudHh0IC4vClJVTiBwaXAgaW5zdGFsbCAtLW5vLWNhY2hlLWRpciAtciByZXF1aXJlbWVudHMudHh0ClJVTiBwbGF5d3JpZ2h0IGluc3RhbGwgY2hyb21pdW0KUlVOIHBsYXl3cmlnaHQgaW5zdGFsbC1kZXBzIGNocm9taXVtCgpDT1BZIC4vYXBwIC91c3Ivc3JjL2FwcC9hcHAKCkNNRCBbInV2aWNvcm4iLCAiYXBwLm1haW46YXBwIiwgIi0taG9zdCIsICIwLjAuMC4wIiwgIi0tcG9ydCIsICI4MCJdCg== \ No newline at end of file