From 1a0f5ae1264fb9fc0631178daf4e79fc345f6533 Mon Sep 17 00:00:00 2001 From: "guorong.zheng" <360996299@qq.com> Date: Wed, 14 Aug 2024 17:38:34 +0800 Subject: [PATCH] chore:debian mirrors --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8e90c94456b..2f8e8a9b757 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,17 @@ RUN pip install -i https://mirrors.aliyun.com/pypi/simple pipenv RUN pipenv install +RUN echo "deb https://mirrors.ustc.edu.cn/debian/ bookworm main contrib non-free non-free-firmware\n \ + deb-src https://mirrors.ustc.edu.cn/debian/ bookworm main contrib non-free non-free-firmware\n \ + deb https://mirrors.ustc.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware\n \ + deb-src https://mirrors.ustc.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware\n \ + deb-src https://mirrors.ustc.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware\n \ + deb https://mirrors.ustc.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware\n \ + deb-src https://mirrors.ustc.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware\n \ + deb https://mirrors.ustc.edu.cn/debian-security/ bookworm-security main contrib non-free non-free-firmware\n \ + deb-src https://mirrors.ustc.edu.cn/debian-security/ bookworm-security main contrib non-free non-free-firmware\n" \ + > /etc/apt/sources.list + RUN apt-get update && apt-get install -y --no-install-recommends \ cron \ wget \