created the go122.rocky9 image
This commit is contained in:
parent
59020ca444
commit
512b821232
@ -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 -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 && 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
|
||||
|
3
docker-images/Dockerfile.dev-go122-rocky9
Normal file
3
docker-images/Dockerfile.dev-go122-rocky9
Normal file
@ -0,0 +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 echo 'PATH=$PATH:/opt/go/bin' > /etc/profile.d/go.sh
|
@ -44,6 +44,13 @@ publish-dev-go120-rocky9:
|
||||
docker tag dev:go1.20.6.rocky9 docker.io/hyunghwan/dev:go1.20.6.rocky9
|
||||
docker push docker.io/hyunghwan/dev:go1.20.6.rocky9
|
||||
|
||||
dev-go122-rocky9:
|
||||
docker build -t dev:go1.22.0.rocky9 -f Dockerfile.$@ .
|
||||
|
||||
publish-dev-go122-rocky9:
|
||||
docker tag dev:go1.22.0.rocky9 docker.io/hyunghwan/dev:go1.22.0.rocky9
|
||||
docker push docker.io/hyunghwan/dev:go1.22.0.rocky9
|
||||
|
||||
dev-gcc-centos6:
|
||||
docker build -t dev:gcc.centos6 -f Dockerfile.$@ .
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user