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,避免网络问题
- 提升镜像拉取速度和稳定性
This commit is contained in:
Charile Zhou
2026-01-22 22:53:34 +08:00
parent b6b0c229ef
commit 0201b5336e
2 changed files with 2 additions and 2 deletions

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