ci: docker_tag=ext - Mise à jour Dockerfile avec outils requis et .cursorignore

This commit is contained in:
4NK CI Bot 2025-09-21 13:27:04 +00:00
parent 30a3960b2e
commit e341c45639
2 changed files with 20 additions and 1 deletions

10
.cursorignore Normal file
View File

@ -0,0 +1,10 @@
# Cursor ignore file for ihm_client
node_modules/
dist/
*.log
.env*
.DS_Store
coverage/
build/
pkg/
pkg2/

View File

@ -4,7 +4,16 @@ FROM node:20-alpine
WORKDIR /app WORKDIR /app
# Installation des dépendances nécessaires # Installation des dépendances nécessaires
RUN apk update && apk add --no-cache git nginx curl RUN apk update && apk upgrade && apk add --no-cache \
git \
nginx \
curl \
wget \
jq \
busybox-extras \
npm \
coreutils \
&& npm install -g wscat
# Copy project files # Copy project files
COPY . . COPY . .