added docker image containing go 1.25.0
This commit is contained in:
3
docker-images/Dockerfile.dev-go125-rocky9
Normal file
3
docker-images/Dockerfile.dev-go125-rocky9
Normal 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
|
@ -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.$@ .
|
||||
|
||||
|
Reference in New Issue
Block a user