first commit

This commit is contained in:
2026-01-22 20:55:07 +00:00
parent a28c9ddc97
commit 278f821328
40 changed files with 8615 additions and 0 deletions

29
Dockerfile Executable file
View File

@@ -0,0 +1,29 @@
# -------- Build stage --------
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# -------- Runtime stage --------
FROM node:20-alpine
WORKDIR /app
# ✅ REQUIRED for SMTP + HTTPS
RUN apk add --no-cache ca-certificates
ENV NODE_ENV=production
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/.next ./.next
COPY --from=builder /app/public ./public
EXPOSE 3000
CMD ["npm", "start"]