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

This commit is contained in:
kevin-asprec
2026-04-14 20:13:59 +08:00
parent 0fe5061134
commit af42fdb96f

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