add runner

This commit is contained in:
Puechberty Arthur
2026-06-12 01:26:06 +02:00
parent e748b75a4b
commit 74ecd21eda
8 changed files with 89 additions and 32 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"]