playground/docker-images/Dockerfile.dev-go122-rocky9

4 lines
283 B
Docker
Raw Permalink Normal View History

2024-02-19 08:33:33 +00:00
FROM docker.io/hyunghwan/dev:gcc.rocky9
2024-07-01 00:21:46 +00:00
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
2024-02-19 08:33:33 +00:00
RUN echo 'PATH=$PATH:/opt/go/bin' > /etc/profile.d/go.sh