From 2c3765b1701563f6568d969be7db9fc6745004db Mon Sep 17 00:00:00 2001 From: ghmark675 Date: Thu, 6 Nov 2025 10:00:41 +0800 Subject: [PATCH] chore(docker): copy .env file --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 59efc20..0aaf310 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,6 +50,9 @@ RUN uv pip install --system -r requirements.txt # Install Playwright browser binaries (system deps already handled above) RUN python -m playwright install chromium +# Copy .env +COPY .env.example .env + # Copy application source COPY . .