chore: update

This commit is contained in:
TakahashiNg
2026-03-26 14:54:20 +00:00
parent 234151ca17
commit 5672550771
5 changed files with 25 additions and 26 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# --- Giai đoạn 1: Build ---
FROM node:18-alpine AS builder
FROM node:25-alpine AS builder
# Cài đặt pnpm
RUN corepack enable && corepack prepare pnpm@latest --activate
@@ -10,7 +10,7 @@ WORKDIR /app
COPY package.json pnpm-lock.yaml ./
# Cài đặt dependencies (sử dụng --frozen-lockfile để đảm bảo đúng phiên bản)
RUN pnpm install --frozen-lockfile
RUN pnpm install --prod --frozen-lockfile
# Copy toàn bộ code
COPY . .