chore: configure Maven to use Aliyun mirror

This commit is contained in:
lzh
2025-12-18 14:22:26 +08:00
parent d8fb49452f
commit 31c8f8c0a6
3 changed files with 27 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
FROM maven:3.9-eclipse-temurin-17 AS build
WORKDIR /app
# 配置 Maven 使用阿里云镜像源
COPY settings.xml /usr/share/maven/conf/settings.xml
# 复制项目源码
COPY . .