From e3a58bd337aa7edb54d9059dba6b9e1fcbec5a7a Mon Sep 17 00:00:00 2001 From: lucas Date: Fri, 27 Sep 2024 16:03:19 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=9B=B4=E6=96=B0=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E9=95=9C=E5=83=8F=20shell=20=20=E9=81=BF=E5=85=8D=20=E5=87=BA?= =?UTF-8?q?=E7=8E=B0=20=20=E5=90=AF=E5=8A=A8=E6=97=B6=E6=8F=90=E7=A4=BAnot?= =?UTF-8?q?=20found?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/Dockerfile_app | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile_app b/build/Dockerfile_app index 1edf367..3c09447 100644 --- a/build/Dockerfile_app +++ b/build/Dockerfile_app @@ -1,5 +1,5 @@ FROM registry.ngaiot.com/base-images/alpine_3.20_cst:6 +RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2 WORKDIR /app/ COPY *.exe *.yaml /app/ -RUN echo "当前目录内容" && ls && pwd CMD ["/app/app.exe"]