3 Commits

Author SHA1 Message Date
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
ae99faf486 Merge pull request 'fix: add golang installation and update bash aliases in Dockerfile' (#5) from add-features into main
All checks were successful
Build and publish Docker image / build-and-push (push) Successful in 25m15s
Reviewed-on: #5
2025-07-02 08:27:42 -05:00
Stephen Simpson
a51f619dbe fix: add golang installation and update bash aliases in Dockerfile
Signed-off-by: Stephen Simpson <ssimpson89@users.noreply.github.com>
2025-07-02 08:27:25 -05:00

View File

@@ -1,4 +1,4 @@
FROM rockylinux/rockylinux:9
FROM rockylinux:9
RUN dnf update -y && \
dnf install -y \
@@ -12,7 +12,28 @@ RUN dnf update -y && \
vim \
jq \
createrepo_c \
python3-pip && \
golang \
python3-pip \
curl \
git \
tree \
htop \
tmux \
screen \
nano \
unzip \
tar \
gzip \
rsync \
nmap-ncat \
telnet \
bind-utils \
tcpdump \
strace \
lsof \
openssh-clients \
nodejs \
npm && \
dnf group install -y "Development Tools" && \
dnf clean all && \
case "$(uname -m)" in \
@@ -20,6 +41,8 @@ RUN dnf update -y && \
aarch64) wget "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64" -O /usr/local/bin/yq ;; \
*) echo "Unsupported architecture: $ARCH" && exit 1 ;; \
esac && \
chmod +x /usr/local/bin/yq
chmod +x /usr/local/bin/yq && \
echo "alias ll='ls -l --color=auto'" >> /root/.bashrc && \
echo "alias ls='ls --color=auto'" >> /root/.bashrc
CMD ["/bin/bash"]