From b507c54c701632d028d8dfeee9c811637eb7704c Mon Sep 17 00:00:00 2001 From: Debian Dev4 Date: Sun, 21 Sep 2025 13:27:05 +0000 Subject: [PATCH] =?UTF-8?q?ci:=20docker=5Ftag=3Dext=20-=20Mise=20=C3=A0=20?= =?UTF-8?q?jour=20Dockerfile=20avec=20outils=20requis=20et=20.cursorignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cursorignore | 10 ++++++++++ Dockerfile | 10 +++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .cursorignore diff --git a/.cursorignore b/.cursorignore new file mode 100644 index 00000000..1973f6db --- /dev/null +++ b/.cursorignore @@ -0,0 +1,10 @@ +# Cursor ignore file for lecoffre-front +node_modules/ +.next/ +dist/ +*.log +.env* +.DS_Store +coverage/ +build/ +out/ diff --git a/Dockerfile b/Dockerfile index c818aad1..e60710d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,15 @@ WORKDIR /leCoffre-front COPY package.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 RUN --mount=type=cache,target=/root/.npm \