Compare commits

...

2 Commits

Author SHA1 Message Date
Charile Zhou
0201b5336e feat(docker): 使用 Harbor 内部代理拉取 Node 镜像
Some checks failed
Deploy / Build and Push Images (push) Failing after 1m51s
Deploy / Deploy to Knative (push) Has been skipped
- Node 镜像改为 harbor.tegical.world/docker.io/node:24.11.1-alpine
- 通过内部 Harbor 代理访问 Docker Hub,避免网络问题
- 提升镜像拉取速度和稳定性
2026-01-22 22:53:34 +08:00
Charile Zhou
b6b0c229ef revert: 移除 Docker Buildx driver 配置
- 恢复使用默认的 docker-container driver
- 支持更完整的 BuildKit 特性
2026-01-22 22:50:42 +08:00
3 changed files with 2 additions and 4 deletions

View File

@@ -20,8 +20,6 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: docker
- name: Generate image tag
id: meta

View File

@@ -1,7 +1,7 @@
# ============================================
# Base stage: Install dependencies
# ============================================
FROM node:24.11.1-alpine AS base
FROM harbor.tegical.world/docker.io/node:24.11.1-alpine AS base
RUN corepack enable
WORKDIR /app

View File

@@ -1,7 +1,7 @@
# ============================================
# Base stage: Install dependencies
# ============================================
FROM node:24.11.1-alpine AS base
FROM harbor.tegical.world/docker.io/node:24.11.1-alpine AS base
RUN corepack enable
WORKDIR /app