From b2831a4603c349ad7f4c901b307ad5871dcbf311 Mon Sep 17 00:00:00 2001 From: Markxu <51899048+xubiaolin@users.noreply.github.com> Date: Sun, 21 Nov 2021 17:46:03 +0800 Subject: [PATCH] Update Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复无法登录的bug --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 9ab69da..e894ae3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,7 @@ RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/re # 安装ztncui cd /opt && git clone https://github.com.cnpmjs.org/key-networks/ztncui.git &&\ cd ztncui/src && npm install -g node-gyp && npm install &&\ + cp -pv ./etc/default.passwd ./etc/passwd &&\ echo 'HTTP_PORT=3443' > .env&&\ echo 'NODE_ENV=production' >> .env &&\ echo 'HTTP_ALL_INTERFACES=true' >> .env &&\