diff --git a/docker-images/Dockerfile.gm2-fedora38 b/docker-images/Dockerfile.gm2-fedora38 new file mode 100644 index 0000000..6fdfac5 --- /dev/null +++ b/docker-images/Dockerfile.gm2-fedora38 @@ -0,0 +1,5 @@ +FROM fedora:38 + + +RUN ulimit -n 1024 && dnf -y install make gcc-gm2 libgm2-static glibc-static libstdc++-static +##RUN echo 'PATH=$PATH:/opt/go/bin' > /etc/profile.d/go.sh diff --git a/docker-images/Makefile b/docker-images/Makefile index 47cec7d..f7a6b5a 100644 --- a/docker-images/Makefile +++ b/docker-images/Makefile @@ -17,3 +17,10 @@ go-centos7-big: publish-go-centos7-big: docker tag go:centos7-big docker.io/hyunghwan/go:centos7-big docker push docker.io/hyunghwan/go:centos7-big + +gm2-fedora38: + docker build -t gm2:fedora38 -f Dockerfile.$@ . + +publish-gm2-fedora38: + docker tag gm2:fedora38 docker.io/hyunghwan/gm2:fedora38 + docker push docker.io/hyunghwan/gm2:fedora38