CallVantage-Hub / Dockerfile
issam0505's picture
v3.2: Add no-cache headers to nginx for fresh HTML delivery
06e235e verified
Raw
History Blame Contribute Delete
827 Bytes
FROM nginx:alpine
# Build v3.2 — 2026-03-14 — no-cache headers + force rebuild
COPY nginx.conf /etc/nginx/nginx.conf
# Hub Central (page d'accueil du space)
COPY hub/ /usr/share/nginx/html/hub/
# Site commercial (Next.js static)
COPY site/ /usr/share/nginx/html/site/
# Scripts d'appel interactifs
COPY scripts-appel/ /usr/share/nginx/html/scripts-appel/
# Identite de marque (logos, brand guide)
COPY brand/ /usr/share/nginx/html/brand/
# Kit prospection
COPY prospection/ /usr/share/nginx/html/prospection/
# Templates (signature, carte de visite)
COPY templates/ /usr/share/nginx/html/templates/
# Reseaux sociaux
COPY social-media/ /usr/share/nginx/html/social-media/
# Juridique
COPY juridique/ /usr/share/nginx/html/juridique/
EXPOSE 7860
CMD ["nginx", "-g", "daemon off;"]