update build production

This commit is contained in:
Puechberty Arthur
2026-06-10 21:19:54 +02:00
parent 739fa54719
commit 0f5257c099
5 changed files with 54 additions and 15 deletions
+28
View File
@@ -0,0 +1,28 @@
# ===== BUILD =====
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
# ===== RUN =====
FROM node:20-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
# Standalone output
COPY --from=builder /app/public ./public
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
EXPOSE 3000
CMD ["node", "server.js"]