From 6c3f848b2c2fd064a988663cb29b8bf5df75df50 Mon Sep 17 00:00:00 2001 From: Xinglin Qiang Date: Tue, 29 Jun 2021 10:48:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=BC=E5=AE=B9=E4=BD=BF=E7=94=A8force=20upd?= =?UTF-8?q?ate=E7=9A=84repo=20(#341)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 599379c2..3d25a854 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -30,6 +30,9 @@ RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && touch ~/.bashrc \ && mkdir /run/nginx \ && git clone -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} \ + && git config --global user.email "qinglong@@users.noreply.github.com" \ + && git config --global user.name "qinglong" \ + && git config --global pull.rebase true \ && cd ${QL_DIR} \ && cp -f .env.example .env \ && chmod 777 ${QL_DIR}/shell/*.sh \