fix: remove ENV NODE_ENV=development that breaks Next.js static generation

This commit is contained in:
kevin-asprec
2026-04-14 20:14:35 +08:00
parent 0eb852ad64
commit 9b6f91fde4

View File

@@ -1,6 +1,4 @@
FROM node:20-alpine AS builder
ARG CACHE_BUST=1
ENV NODE_ENV=development
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install