feat: populate CV with real data and fix Docker build
Some checks failed
Stale Issues / stale (push) Has been cancelled
Nightly Build / Build Nightly Image (push) Has been cancelled
Release / Release (push) Has been cancelled
Release / Build & Push Docker Image (push) Has been cancelled

- Replace placeholder CV data with real profile across cv.json and backend seed
- Fix Docker build: npm ci → npm install --legacy-peer-deps --ignore-scripts
  (works around stale lockfile peer dep conflict and iltorb native addon failure on Node 25)
This commit is contained in:
Tuan-Dat Tran
2026-07-01 00:53:38 +02:00
parent 649cf140fa
commit 88b914a3e5
3 changed files with 265 additions and 51 deletions

View File

@@ -3,7 +3,7 @@ FROM node:25-alpine as build
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install --legacy-peer-deps --ignore-scripts
COPY . .
RUN npm run build