33 lines
952 B
Makefile
33 lines
952 B
Makefile
build: dev-go-centos7
|
|
|
|
publish: publish-dev-go-centos7
|
|
|
|
|
|
dev-go-centos7:
|
|
docker build -t dev:go1.20.6.centos7 -f Dockerfile.$@ .
|
|
|
|
publish-dev-go-centos7:
|
|
docker tag dev:go1.20.6.centos7 docker.io/hyunghwan/dev:go1.20.6.centos7
|
|
docker push docker.io/hyunghwan/dev:go1.20.6.centos7
|
|
|
|
dev-go-centos7-big:
|
|
docker build -t dev:go1.20.6.centos7.big -f Dockerfile.$@ .
|
|
|
|
publish-dev-go-centos7-big:
|
|
docker tag dev:go1.20.6.centos7.big docker.io/hyunghwan/dev:go1.20.6.centos7.big
|
|
docker push docker.io/hyunghwan/dev:go1.20.6.centos7.big
|
|
|
|
dev-gm2-fedora38:
|
|
docker build -t dev:gm2.fedora38 -f Dockerfile.$@ .
|
|
|
|
publish-dev-gm2-fedora38:
|
|
docker tag dev:gm2.fedora38 docker.io/hyunghwan/dev:gm2.fedora38
|
|
docker push docker.io/hyunghwan/dev:gm2.fedora38
|
|
|
|
dev-gcc-rocky9:
|
|
docker build -t dev:gcc.rocky9 -f Dockerfile.$@ .
|
|
|
|
publish-dev-gcc-rocky9:
|
|
docker tag dev:gcc.rocky9 docker.io/hyunghwan/dev:gcc.rocky9
|
|
docker push docker.io/hyunghwan/dev:gcc.rocky9
|