Add base Makefile

This commit is contained in:
Jan Eitzinger 2023-07-11 16:52:57 +02:00
parent 235956f92c
commit 0a3a6e4752

9
slurm/base/Makefile Normal file
View File

@ -0,0 +1,9 @@
IMAGE = scidas/slurm.base
.PHONY: build clean
build:
docker build -t $(IMAGE):$(SLURM_VERSION) .
clean:
@[ -z $(docker images -q $(IMAGE):$(SLURM_VERSION)) ] || docker rmi $(IMAGE):$(SLURM_VERSION)