ghmark675
Committed by GitHub

Merge pull request #152 from 666ghj/fix/docker_env

chore(docker): copy .env file
... ... @@ -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 . .
... ...