refactor: 优化 Docker 构建流程,分离 CI/本地开发镜像配置

This commit is contained in:
fawney19
2025-12-11 18:31:53 +08:00
parent 4275e6ec6b
commit 9142473640
4 changed files with 132 additions and 10 deletions

View File

@@ -81,7 +81,7 @@ save_migration_hash() { calc_migration_hash > "$MIGRATION_HASH_FILE"; }
# 构建基础镜像
build_base() {
echo ">>> Building base image (dependencies)..."
docker build -f Dockerfile.base -t aether-base:latest .
docker build -f Dockerfile.base.local -t aether-base:latest .
save_deps_hash
}