From 5a9087b7fc3b9e5ee0e669124bd832298b9c920a Mon Sep 17 00:00:00 2001 From: nfel Date: Tue, 4 Aug 2026 22:37:56 +0330 Subject: [PATCH] =?UTF-8?q?Use=20IUT=20apt=20mirror=20(repo.iut.ac.ir)=20?= =?UTF-8?q?=E2=80=94=20Iran-based=20Ubuntu=20mirror?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Qwen-Coder --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0a401c2..f4ed639 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,7 @@ FROM oci.reg.darano.ir/mcr.microsoft.com/playwright:v1.62.0-noble AS worker # Install Python 3.12 + uv (the Playwright image has browsers but no Python). # Use a mirror for apt since the VPS has network restrictions (Iran). # curl is already installed (playwright system dep). -RUN printf 'Types: deb\nURIs: https://mirrors.tuna.tsinghua.edu.cn/ubuntu/\nSuites: noble noble-updates noble-security\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n' \ +RUN printf 'Types: deb\nURIs: http://repo.iut.ac.ir/ubuntu/\nSuites: noble noble-updates noble-security\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n' \ > /etc/apt/sources.list.d/ubuntu.sources \ && apt-get update && apt-get install -y --no-install-recommends \ python3 python3-venv \