From f1a00d58ca3f382c921a2b41e27df1a445c464d0 Mon Sep 17 00:00:00 2001 From: lanvent Date: Wed, 17 May 2023 22:24:25 +0800 Subject: [PATCH] chore(Dockerfile.latest): comment out the sed command to replace apt source with tuna mirror The sed command to replace the apt source with the tuna mirror has been commented out. This is because the command is not necessary for the current build and may cause issues in the future. --- docker/Dockerfile.latest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.latest b/docker/Dockerfile.latest index d0a2475..59e9b60 100644 --- a/docker/Dockerfile.latest +++ b/docker/Dockerfile.latest @@ -6,7 +6,7 @@ ARG TZ='Asia/Shanghai' ARG CHATGPT_ON_WECHAT_VER RUN echo /etc/apt/sources.list -RUN sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list +# RUN sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list ENV BUILD_PREFIX=/app ADD . ${BUILD_PREFIX}