added docker image containing go 1.25.0

This commit is contained in:
2025-08-19 20:41:45 +09:00
parent e8324f261f
commit a85cd7e1a2
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,3 @@
FROM docker.io/hyunghwan/dev:gcc.rocky9
RUN ulimit -n 1024 && dnf -y install wget git && wget https://go.dev/dl/go1.25.0.linux-amd64.tar.gz && tar -C /opt -zxvf go1.25.0.linux-amd64.tar.gz && rm -f go1.25.0.linux-amd64.tar.gz
RUN echo 'PATH=$PATH:/opt/go/bin' > /etc/profile.d/go.sh

View File

@ -65,6 +65,13 @@ publish-dev-go124-rocky9:
docker tag dev:go1.24.5.rocky9 docker.io/hyunghwan/dev:go1.24.5.rocky9
docker push docker.io/hyunghwan/dev:go1.24.5.rocky9
dev-go125-rocky9:
docker build -t dev:go1.25.0.rocky9 -f Dockerfile.$@ .
publish-dev-go125-rocky9:
docker tag dev:go1.25.0.rocky9 docker.io/hyunghwan/dev:go1.25.0.rocky9
docker push docker.io/hyunghwan/dev:go1.25.0.rocky9
dev-gcc-centos6:
docker build -t dev:gcc.centos6 -f Dockerfile.$@ .