Stack: FastAPI + React/TypeScript + SQLite + GPT-4o Features: Radar géopolitique, Marchés, Régime Macro, Journal de Bord MTM, Rapport IA, Super Contexte (base de raisonnement évolutive), Boucle feedback IA. Deploy: Docker + docker-compose + nginx pour openfin.open-squared.tech Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
611 B
Docker
17 lines
611 B
Docker
# ── Étape 1 : build React ─────────────────────────────────────────────────────
|
|
FROM node:20-alpine AS build
|
|
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm ci --prefer-offline
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# ── Étape 2 : servir le build avec nginx ──────────────────────────────────────
|
|
FROM nginx:1.27-alpine
|
|
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
COPY nginx-spa.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|