From 7213062f6d504ddbf7820d559466089a6a147c01 Mon Sep 17 00:00:00 2001 From: infinitycat Date: Wed, 23 Apr 2025 14:50:25 +0800 Subject: [PATCH] feat: Add g++ compiler installation in Dockerfile This change ensures the g++ compiler is installed within the Docker image. It updates the build process to support projects requiring C++ compilation. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 838e2b993..074711523 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,9 @@ COPY requirements.txt . # 同级目录下需要有 maim_message COPY maim_message /maim_message +# 编译器 +RUN apt-get update && apt-get install -y g++ + # 安装依赖 RUN uv pip install --system --upgrade pip RUN uv pip install --system -e /maim_message