From 42fd9f601b4a9907c4019eeffe524ebe5f4e73c2 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Sat, 5 Aug 2023 03:02:44 +0700 Subject: [PATCH] Add more dependencies to Docker image --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4ab7a5b..f785c14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,14 @@ -FROM debian:bookworm-slim +FROM debian:bookworm +# Update sources RUN apt-get update --yes + +# Install humanscript dependencies RUN apt-get install --yes openssl curl jq +# Install common utilities that humanscripts or humans might want to use +RUN apt-get install --yes moreutils wget parallel nano vim rsync git telnet ssh tree file yq pv bc rename xmlstarlet jo nmap netcat-openbsd net-tools + COPY humanscript /bin/humanscript WORKDIR /data \ No newline at end of file