From b36b9bf5a09fc9890a33339326febe9605c88b5a Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Mon, 1 Jul 2024 09:21:46 +0900 Subject: [PATCH] updated go docker images --- docker-images/Dockerfile.dev-go-rocky9 | 2 +- docker-images/Dockerfile.dev-go120-rocky9 | 2 +- docker-images/Dockerfile.dev-go122-rocky9 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-images/Dockerfile.dev-go-rocky9 b/docker-images/Dockerfile.dev-go-rocky9 index 6d73572..588d787 100644 --- a/docker-images/Dockerfile.dev-go-rocky9 +++ b/docker-images/Dockerfile.dev-go-rocky9 @@ -1,4 +1,4 @@ ## rocky linux 9 image to use for building hawk FROM docker.io/hyunghwan/dev:gcc.rocky9 -RUN ulimit -n 1024 && dnf -y install --enablerepo=devel golang +RUN ulimit -n 1024 && dnf -y install --enablerepo=devel golang git diff --git a/docker-images/Dockerfile.dev-go120-rocky9 b/docker-images/Dockerfile.dev-go120-rocky9 index 0d4a31d..89f2816 100644 --- a/docker-images/Dockerfile.dev-go120-rocky9 +++ b/docker-images/Dockerfile.dev-go120-rocky9 @@ -1,3 +1,3 @@ FROM docker.io/hyunghwan/dev:gcc.rocky9 -RUN ulimit -n 1024 && dnf -y install wget && wget https://go.dev/dl/go1.20.6.linux-amd64.tar.gz && tar -C /opt -zxvf go1.20.6.linux-amd64.tar.gz && rm -f go1.20.6.linux-amd64.tar.gz +RUN ulimit -n 1024 && dnf -y install wget git && wget https://go.dev/dl/go1.20.6.linux-amd64.tar.gz && tar -C /opt -zxvf go1.20.6.linux-amd64.tar.gz && rm -f go1.20.6.linux-amd64.tar.gz RUN echo 'PATH=$PATH:/opt/go/bin' > /etc/profile.d/go.sh diff --git a/docker-images/Dockerfile.dev-go122-rocky9 b/docker-images/Dockerfile.dev-go122-rocky9 index de4fff4..5f2f61c 100644 --- a/docker-images/Dockerfile.dev-go122-rocky9 +++ b/docker-images/Dockerfile.dev-go122-rocky9 @@ -1,3 +1,3 @@ FROM docker.io/hyunghwan/dev:gcc.rocky9 -RUN ulimit -n 1024 && dnf -y install wget && wget https://go.dev/dl/go1.22.0.linux-amd64.tar.gz && tar -C /opt -zxvf go1.22.0.linux-amd64.tar.gz && rm -f go1.22.0.linux-amd64.tar.gz +RUN ulimit -n 1024 && dnf -y install wget git && wget https://go.dev/dl/go1.22.4.linux-amd64.tar.gz && tar -C /opt -zxvf go1.22.4.linux-amd64.tar.gz && rm -f go1.22.4.linux-amd64.tar.gz RUN echo 'PATH=$PATH:/opt/go/bin' > /etc/profile.d/go.sh