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
All checks were successful
build-and-push-ext / build_push (push) Successful in 3m13s
This commit is contained in:
parent
97f8915b84
commit
930645e6ca
@ -18,7 +18,10 @@ RUN --mount=type=ssh cargo build --release
|
|||||||
|
|
||||||
# ---- image finale ----
|
# ---- image finale ----
|
||||||
FROM debian:bookworm-slim
|
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
|
# Créer l'utilisateur bitcoin
|
||||||
RUN useradd -m -d /home/bitcoin -u 1000 bitcoin
|
RUN useradd -m -d /home/bitcoin -u 1000 bitcoin
|
||||||
|
Loading…
x
Reference in New Issue
Block a user