From 5da34951eeef40421ac7f7f5c90987ebbd2ea19a Mon Sep 17 00:00:00 2001 From: lihongjie0209 Date: Sat, 31 Jan 2026 10:50:27 +0800 Subject: [PATCH] feat(Dockerfile): add missing proto directory copy in build process --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 18c06804..f2c2a96a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM registry-vpc.cn-beijing.aliyuncs.com/lihongjie/maven:3-eclipse-temurin-21-j WORKDIR /code COPY pom.xml . COPY settings.xml . +COPY proto ./proto RUN mvn verify --fail-never --settings settings.xml && mvn dependency:resolve-plugins --settings settings.xml