updated go docker images

This commit is contained in:
hyung-hwan 2024-07-01 09:21:46 +09:00
parent d74db62bc2
commit b36b9bf5a0
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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