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

This commit is contained in:
4NK Dev 2025-09-21 13:27:01 +00:00
parent ae7ad037f7
commit 7e1e4358a6
2 changed files with 10 additions and 1 deletions

8
.cursorignore Normal file
View File

@ -0,0 +1,8 @@
# Cursor ignore file for sdk_storage
target/
*.log
.env*
.DS_Store
node_modules/
coverage/
dist/

View File

@ -8,7 +8,8 @@ RUN cargo build --release
FROM debian:stable-slim
RUN useradd -m -u 10001 appuser && \
apt-get update && apt-get install -y ca-certificates dnsutils jq curl git wget telnet npm coreutils && \
apt-get update && apt-get upgrade -y && \
apt-get install -y ca-certificates dnsutils jq curl git wget telnet npm coreutils iputils-ping && \
npm install -g wscat && \
rm -rf /var/lib/apt/lists/* /root/.npm
WORKDIR /app