From 3f5727e1b0bb06490b54d1c78b10ebf54319630c Mon Sep 17 00:00:00 2001 From: imbytecat Date: Tue, 8 Jul 2025 00:38:47 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E9=95=9C=E5=83=8F=E4=B8=BAyay=E5=B9=B6=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E5=AE=89=E8=A3=85=E5=B7=A5=E5=85=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将基础镜像从paru修改为yay,并改变软件包安装工具为aur-install。 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e0c95c8..59550f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,9 @@ # sed -i 's/v3.21.0/v3.21.2/g' wcocr/CMakeLists.txt && \ # mkdir -p wcocr/build && cd wcocr/build && cmake .. && make -j$(nproc) -FROM greyltc/archlinux-aur:paru +FROM greyltc/archlinux-aur:yay WORKDIR /app -RUN paru -Syu --noconfirm bun-bin wechat-bin && \ +RUN aur-install bun-bin wechat-bin && \ echo "Hello World" # COPY --from=lib /src/wcocr/build/libwcocr.so . # COPY src/index.ts .