chpark-sync #425

Merged
kjs merged 293 commits from chpark-sync into main 2026-03-23 09:36:36 +09:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 097aab9afa - Show all commits

View File

@ -1,5 +1,5 @@
# Multi-stage build for Next.js # Multi-stage build for Next.js
FROM node:18-alpine AS base FROM node:20-alpine AS base
# Install dependencies only when needed # Install dependencies only when needed
FROM base AS deps FROM base AS deps
@ -8,7 +8,7 @@ WORKDIR /app
# Install dependencies # Install dependencies
COPY package.json package-lock.json* ./ COPY package.json package-lock.json* ./
RUN npm ci RUN npm install
# Rebuild the source code only when needed # Rebuild the source code only when needed
FROM base AS builder FROM base AS builder