From 9c6eef702bb771f2965d6e5916d1c309bcf57d3e Mon Sep 17 00:00:00 2001 From: 4NK Dev Date: Sun, 21 Sep 2025 13:27:00 +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 | 28 +++++----------------------- Dockerfile | 10 +++++++++- 2 files changed, 14 insertions(+), 24 deletions(-) diff --git a/.cursorignore b/.cursorignore index 0a387e1..ca9f615 100644 --- a/.cursorignore +++ b/.cursorignore @@ -1,26 +1,8 @@ -# Ignorer les contenus volumineux pour le contexte IA +# Cursor ignore file for sdk_signer node_modules/ dist/ -build/ +*.log +.env* +.DS_Store coverage/ -.cache/ -.tmp/ -.parcel-cache/ - -# Rapports et logs de tests -tests/logs/ -tests/reports/ - -# Fichiers lourds -**/*.map -**/*.min.* -**/*.wasm -**/*.{png,jpg,jpeg,svg,ico,pdf} - -# Ne pas ignorer .cursor ni AGENTS.md -!/.cursor -!/AGENTS.md - -!.cursor/ - -!AGENTS.md +pkg/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 6fbe69e..1a4b42b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,15 @@ FROM node:20-alpine WORKDIR /app # Installation des dépendances nécessaires -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 # Copie des fichiers du projet COPY --from=wasm-builder /build/sdk_signer/pkg ./pkg