From 5fb68efd00cf33c49267eb9691f0746f5a95410e Mon Sep 17 00:00:00 2001 From: ywp Date: Wed, 22 Oct 2025 15:17:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7d46a60..c663165 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ---- Build stage ---- -FROM node:20-slim AS build +FROM docker.1ms.run/node:20-slim AS build WORKDIR /app @@ -13,7 +13,7 @@ COPY src/ ./src COPY index.html ./ # ---- Runtime stage ---- -FROM nginx:1.27-alpine +FROM docker.1ms.run/nginx:1.27-alpine RUN apk add --no-cache nodejs npm