From 62a440337d063b97f2dc0d04d73058f9f5e8871c Mon Sep 17 00:00:00 2001 From: xubiaolin Date: Mon, 22 Aug 2022 10:44:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20=E5=88=A0=E9=99=A4%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f1eed13..41c7244 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV TZ=Asia/Shanghai \ ADD . /app -RUN sed -i "s@http://.*archive.ubuntu.com@https://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list& \ +RUN sed -i "s@http://.*archive.ubuntu.com@https://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list \ && sed -i "s@http://.*security.ubuntu.com@https://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list \ && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' > /etc/timezone\ && apt update && apt install git python3 npm make curl wget -y \