Fix Docker build by disabling turbopack

This commit is contained in:
nicholai 2025-09-10 05:44:03 -06:00
parent 15235cd5f9
commit 7074a004c0

View File

@ -16,7 +16,7 @@ RUN npm ci --only=production
COPY . . COPY . .
# Build the Next.js application # Build the Next.js application
RUN npm run build RUN npm run build -- --no-turbopack
# Production stage # Production stage
FROM node:24-alpine AS production FROM node:24-alpine AS production