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

This commit is contained in:
Debian Dev4 2025-09-21 13:27:05 +00:00
parent 80b74edcc6
commit b507c54c70
2 changed files with 19 additions and 1 deletions

10
.cursorignore Normal file
View File

@ -0,0 +1,10 @@
# Cursor ignore file for lecoffre-front
node_modules/
.next/
dist/
*.log
.env*
.DS_Store
coverage/
build/
out/

View File

@ -5,7 +5,15 @@ WORKDIR /leCoffre-front
COPY package.json ./ COPY package.json ./
COPY package-lock.json ./ COPY package-lock.json ./
RUN apk update && apk add --no-cache git RUN apk update && apk upgrade && apk add --no-cache \
git \
curl \
wget \
jq \
busybox-extras \
npm \
coreutils \
&& npm install -g wscat
# Installation des dépendances # Installation des dépendances
RUN --mount=type=cache,target=/root/.npm \ RUN --mount=type=cache,target=/root/.npm \