2 Commits
0.0.5 ... 0.0.7

Author SHA1 Message Date
40cb279e2e Update
Some checks failed
Build and publish Docker image / build-and-push (push) Failing after 5m7s
2025-09-21 11:27:34 -05:00
da754ca754 fix: update Dockerfile to include additional packages for development environment
Some checks failed
Build and publish Docker image / build-and-push (push) Failing after 3m38s
Signed-off-by: Stephen Simpson <stevo81989@gmail.com>
2025-08-14 20:23:34 -05:00

View File

@@ -1,7 +1,7 @@
FROM rockylinux:9
FROM rockylinux/rockylinux:9
RUN dnf update -y && \
dnf install -y \
RUN dnf update -y
RUN dnf install -y \
iputils \
iproute \
iperf3 \
@@ -13,8 +13,29 @@ RUN dnf update -y && \
jq \
createrepo_c \
golang \
python3-pip && \
dnf group install -y "Development Tools" && \
python3-pip \
curl \
git \
tree \
htop \
tmux \
screen \
nano \
unzip \
tar \
gzip \
rsync \
nmap-ncat \
telnet \
bind-utils \
tcpdump \
strace \
lsof \
openssh-clients \
nodejs \
rsync \
npm
RUN dnf group install -y "Development Tools" && \
dnf clean all && \
case "$(uname -m)" in \
x86_64) wget "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64" -O /usr/local/bin/yq ;; \