From eaa8ae41d5772574c0b35276596dda26c0db9c5c Mon Sep 17 00:00:00 2001 From: imbytecat Date: Tue, 8 Jul 2025 00:54:52 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=A2=9E=E5=BC=BA=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E7=8E=AF=E5=A2=83=E5=8A=9F=E8=83=BD=EF=BC=8C=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?git=E5=AE=89=E8=A3=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加git安装以增强构建环境功能。 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 64e5e15..15dfd31 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM archlinux:base-devel AS lib WORKDIR /src -RUN pacman -Syu --noconfirm cmake python nodejs && \ +RUN pacman -Syu --noconfirm git cmake python nodejs && \ git clone https://github.com/swigger/wechat-ocr.git wcocr && \ sed -i 's/v3.21.0/v3.21.2/g' wcocr/CMakeLists.txt && \ mkdir -p wcocr/build && cd wcocr/build && cmake .. && make -j$(nproc)