dockerfile 업데이트

This commit is contained in:
Ayuriel 2025-05-31 22:33:31 +09:00
parent 2eac055306
commit a76dfe459b

View File

@ -9,7 +9,7 @@ WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json package-lock.json* ./
RUN npm ci --only=production
RUN npm ci
# Rebuild the source code only when needed
FROM base AS builder