Add deployment script

Add Dockerfile, docker compose, and update Nix config for deployment
This commit is contained in:
Hafid Nur
2026-02-14 16:44:23 +07:00
parent 5bb5a05a25
commit e3b98d9f35
4 changed files with 49 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM node:22-alpine AS deps
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --prefer-offline --no-audit --no-fund
FROM node:22-alpine AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
ENV NX_DAEMON=false
RUN npm run qrcampaign:build
FROM nginx:alpine AS runner
RUN rm -rf /usr/share/nginx/html/*
COPY --from=builder /app/dist/apps/qrcampaign /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]