From 40ff56490d13c872794bb4472216ed84846f6f4f Mon Sep 17 00:00:00 2001 From: nfel Date: Tue, 4 Aug 2026 23:19:26 +0330 Subject: [PATCH] Use parsvds.com as Ubuntu apt mirror Replace repo.iut.ac.ir with ubuntu.parsvds.com for better connectivity from Iran. Co-authored-by: Qwen-Coder --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 26b4ea5..b713f3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,7 +61,7 @@ FROM oci.reg.darano.ir/mcr.microsoft.com/playwright:v1.62.0-noble AS worker # Install Python 3.12 + uv, then sync deps — all in one RUN. # Use a mirror for apt since the VPS has network restrictions (Iran). -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' \ +RUN printf 'Types: deb\nURIs: http://ubuntu.parsvds.com/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 \