ci: docker_tag=ext - Mise à jour Dockerfile avec outils requis et .cursorignore
This commit is contained in:
parent
38dcac2724
commit
9c6eef702b
@ -1,26 +1,8 @@
|
|||||||
# Ignorer les contenus volumineux pour le contexte IA
|
# Cursor ignore file for sdk_signer
|
||||||
node_modules/
|
node_modules/
|
||||||
dist/
|
dist/
|
||||||
build/
|
*.log
|
||||||
|
.env*
|
||||||
|
.DS_Store
|
||||||
coverage/
|
coverage/
|
||||||
.cache/
|
pkg/
|
||||||
.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
|
|
10
Dockerfile
10
Dockerfile
@ -33,7 +33,15 @@ 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
|
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
|
# Copie des fichiers du projet
|
||||||
COPY --from=wasm-builder /build/sdk_signer/pkg ./pkg
|
COPY --from=wasm-builder /build/sdk_signer/pkg ./pkg
|
||||||
|
Loading…
x
Reference in New Issue
Block a user