Some checks failed
Deploy / deploy (push) Failing after 19s
tsconfig.json, tsconfig.app.json, and tsconfig.node.json were never committed because *.json was gitignored without exceptions for them. Added whitelist entries and restored Dockerfile to use npm run build (tsc -b + vite) now that the config files are present. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
718 B
Docker
20 lines
718 B
Docker
# ── Stage 1: Build React frontend ─────────────────────────────────────────
|
|
FROM node:20-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
COPY frontend/package*.json ./
|
|
RUN npm ci
|
|
COPY frontend/ .
|
|
RUN npm run build
|
|
|
|
# ── Stage 2: Serve with nginx ──────────────────────────────────────────────
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \
|
|
CMD wget -qO /dev/null http://localhost/ || exit 1
|