From 0795979ba5cce8ad58a188e892610722f471bf54 Mon Sep 17 00:00:00 2001 From: marsal Date: Tue, 7 Jul 2026 17:41:12 +0800 Subject: [PATCH] =?UTF-8?q?fix(docker):=20mci-server=20Dockerfile=20?= =?UTF-8?q?=E5=A4=8D=E5=88=B6=E5=B9=B6=E6=9E=84=E5=BB=BA=20mci-channel-wec?= =?UTF-8?q?om=20=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/mci-server/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/mci-server/Dockerfile b/backend/mci-server/Dockerfile index 087699b..600383d 100644 --- a/backend/mci-server/Dockerfile +++ b/backend/mci-server/Dockerfile @@ -4,12 +4,15 @@ WORKDIR /app COPY pom.xml ./pom.xml COPY mci-shared ./mci-shared COPY mci-channel-common ./mci-channel-common +COPY mci-channel-wecom/pom.xml ./mci-channel-wecom/pom.xml +COPY mci-channel-wecom/src ./mci-channel-wecom/src COPY mci-server/pom.xml ./mci-server/pom.xml COPY mci-server/src ./mci-server/src RUN mvn -N install && \ mvn -f mci-shared/pom.xml install -DskipTests && \ mvn -f mci-channel-common/pom.xml install -DskipTests && \ + mvn -f mci-channel-wecom/pom.xml install -DskipTests && \ mvn -f mci-server/pom.xml package -DskipTests FROM eclipse-temurin:21-jre-alpine