From a51f619dbe52b9339bc8354a3b21c65ca7f69d40 Mon Sep 17 00:00:00 2001 From: Stephen Simpson Date: Wed, 2 Jul 2025 08:27:25 -0500 Subject: [PATCH] fix: add golang installation and update bash aliases in Dockerfile Signed-off-by: Stephen Simpson --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0df9fe8..0ed4bc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ RUN dnf update -y && \ vim \ jq \ createrepo_c \ + golang \ python3-pip && \ dnf group install -y "Development Tools" && \ dnf clean all && \ @@ -20,6 +21,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"] \ No newline at end of file -- 2.49.1