Production dependency audit / API · production dependencies (push) Successful in 48s
DH V2 CI / API · typecheck, tests, build (push) Successful in 1m10s
DH V2 CI / Docker / migrations / production images (push) Successful in 59s
DH V2 CI / Promote verified main to deploy (push) Successful in 2s
DH V2 CI / WEB · typecheck, build (push) Successful in 23s
Production dependency audit / WEB · production dependencies (push) Successful in 8s
15 lines
339 B
Docker
15 lines
339 B
Docker
FROM node:24-alpine AS builder
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm ci
|
|
COPY tsconfig*.json vite.config.ts index.html ./
|
|
COPY public ./public
|
|
COPY scripts ./scripts
|
|
COPY src ./src
|
|
RUN npm run build
|
|
|
|
FROM nginx:alpine
|
|
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
EXPOSE 80
|