fix(ihm_client): corrections Dockerfile et doc d’intégration IHM dans 4NK_node
Some checks failed
CI - 4NK Node / Code Quality (push) Failing after 29s
CI - 4NK Node / Unit Tests (push) Failing after 29s
CI - 4NK Node / Integration Tests (push) Successful in 26s
CI - 4NK Node / Security Tests (push) Failing after 28s
CI - 4NK Node / Docker Build & Test (push) Failing after 10s
CI - 4NK Node / Documentation Tests (push) Successful in 3s
CI - 4NK Node / Performance Tests (push) Successful in 28s
CI - 4NK Node / Notify (push) Failing after 2s

This commit is contained in:
Nicolas Cantu 2025-08-25 19:46:59 +02:00
parent 19a9f3a36d
commit efb32e9604
2 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ RUN apk update && apk add --no-cache \
COPY package*.json ./ COPY package*.json ./
# Installation des dépendances # Installation des dépendances
RUN npm ci --only=production RUN npm install --omit=dev
# Copie du code source # Copie du code source
COPY . . COPY . .
@ -34,10 +34,10 @@ COPY --from=builder /app/dist /usr/share/nginx/html
COPY --from=builder /app/package*.json /app/ COPY --from=builder /app/package*.json /app/
# Copie de la configuration nginx optimisée pour 4NK_node # Copie de la configuration nginx optimisée pour 4NK_node
COPY nginx.4nk-node.conf /etc/nginx/conf.d/default.conf COPY nginx.conf /etc/nginx/conf.d/default.conf
# Script de démarrage # Script de démarrage
COPY start-4nk-node.sh /start-4nk-node.sh COPY start.sh /start-4nk-node.sh
RUN chmod +x /start-4nk-node.sh RUN chmod +x /start-4nk-node.sh
# Exposition des ports # Exposition des ports