These docker containers populate docker.io/warewulf. A new centos-7 container serves as an example for others to build from when required. The new Makefile builds .tar images with Podman which can be imported into Warewulf directly without going through a registry. Signed-off-by: Jonathon Anderson <janderson@ciq.co>
10 lines
166 B
Makefile
10 lines
166 B
Makefile
all: centos-7.tar rockylinux-8.tar openhpc-2.tar
|
|
.PHONY: all
|
|
|
|
%.tar: %/Containerfile
|
|
podman save $$(podman build --quiet $*) >$@
|
|
|
|
clean:
|
|
rm -rf *.tar
|
|
.PHONY: clean
|