From 199f22784642ff052fa8e501f9547fca1b05ae99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Mon, 15 Jan 2024 14:33:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20Dockerfile?= 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 fca9427..8241998 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ ADD ${WECHAT_URL} WeChatSetup.exe # 安装微信 COPY install-wechat.sh install-wechat.sh -RUN bash -c 'nohup /entrypoint.sh 2>&1 &' && \ +RUN apt install -y net-tools && bash -c 'nohup /entrypoint.sh 2>&1 &' && \ sleep 10 && \ sudo chown app:app WeChatSetup.exe && \ ./install-wechat.sh && \