created the go122.rocky9 image

This commit is contained in:
2024-02-19 17:33:33 +09:00
parent 59020ca444
commit 512b821232
3 changed files with 11 additions and 1 deletions

View 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