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