-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more dependencies to Docker image
- Loading branch information
1 parent
a14411c
commit 42fd9f6
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |