From f60de9312a61a48996904eb8dea7077b82c1b09d Mon Sep 17 00:00:00 2001 From: nfel Date: Tue, 4 Aug 2026 21:28:19 +0330 Subject: [PATCH] Use local registry mirror for Playwright image Replace mcr.microsoft.com/playwright:v1.62.0-noble with oci.reg.darano.ir/mcr.microsoft.com/playwright:latest for worker builds. Co-authored-by: Qwen-Coder --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 52142d4..56b43b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,7 +49,7 @@ EXPOSE 8000 CMD ["python", "main.py", "admin"] # ── Stage 2b: worker runtime (Playwright image with Chromium) ──────────────── -FROM mcr.microsoft.com/playwright:v1.62.0-noble AS worker +FROM oci.reg.darano.ir/mcr.microsoft.com/playwright:latest AS worker ENV PATH="/app/.venv/bin:$PATH" \ PYTHONUNBUFFERED=1 \