From 36079b7af4f39e51c017e08742be4f2a426c2e75 Mon Sep 17 00:00:00 2001 From: xubiaolin Date: Mon, 22 Aug 2022 10:04:42 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20add=20slash?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index a1f1ffa..da392fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,16 +4,16 @@ ENV TZ=Asia/Shanghai \ ADD . /app -RUN echo "deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ - deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ - deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ - deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ - deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ - deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ - deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ - deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ - deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse\ - deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse" >/etc/apt/sources.list \ +RUN echo "deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\n \ + deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\n\ + deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\n\ + deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multivers\ne\ + deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\n\ + deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\n\ + deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\n\ + deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\n\ + deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse\n\ + deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse\n" >/etc/apt/sources.list \ && apt update \ && apt install -y tzdata \ && ln -fs /usr/share/zoneinfo/${TZ} /etc/localtime \