Committed by
GitHub
Merge pull request #152 from 666ghj/fix/docker_env
chore(docker): copy .env file
Showing
1 changed file
with
3 additions
and
0 deletions
| @@ -50,6 +50,9 @@ RUN uv pip install --system -r requirements.txt | @@ -50,6 +50,9 @@ RUN uv pip install --system -r requirements.txt | ||
| 50 | # Install Playwright browser binaries (system deps already handled above) | 50 | # Install Playwright browser binaries (system deps already handled above) |
| 51 | RUN python -m playwright install chromium | 51 | RUN python -m playwright install chromium |
| 52 | 52 | ||
| 53 | +# Copy .env | ||
| 54 | +COPY .env.example .env | ||
| 55 | + | ||
| 53 | # Copy application source | 56 | # Copy application source |
| 54 | COPY . . | 57 | COPY . . |
| 55 | 58 |
-
Please register or login to post a comment