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

4 lines
283 B
Docker
Raw Normal View History

2024-09-30 08:59:10 +00:00
FROM docker.io/hyunghwan/dev:gcc.rocky9
RUN ulimit -n 1024 && dnf -y install wget git && wget https://go.dev/dl/go1.23.1.linux-amd64.tar.gz && tar -C /opt -zxvf go1.23.1.linux-amd64.tar.gz && rm -f go1.23.1.linux-amd64.tar.gz
RUN echo 'PATH=$PATH:/opt/go/bin' > /etc/profile.d/go.sh