feat: ajout apt update && apt upgrade et outils (curl, git, wget, jq, telnet, npm, wscat) dans Dockerfile
All checks were successful
build-and-push-ext / build_push (push) Successful in 3m13s

This commit is contained in:
4NK Dev 2025-09-20 12:44:20 +00:00
parent 97f8915b84
commit 930645e6ca

View File

@ -18,7 +18,10 @@ RUN --mount=type=ssh cargo build --release
# ---- image finale ----
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y ca-certificates strace curl dnsutils jq git wget telnet
RUN apt-get update && apt-get upgrade -y && \
apt-get install -y ca-certificates strace curl dnsutils jq git wget telnet npm coreutils && \
npm install -g wscat && \
rm -rf /var/lib/apt/lists/* /root/.npm
# Créer l'utilisateur bitcoin
RUN useradd -m -d /home/bitcoin -u 1000 bitcoin