mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2025-07-23 21:31:42 +02:00
Introduce slurm cluster
This commit is contained in:
17
slurm/base/Makefile
Normal file
17
slurm/base/Makefile
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
SLURM_VERSION = 19.05.1
|
||||
IMAGE = scidas/slurm.base
|
||||
|
||||
DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
||||
|
||||
.PHONY: all build clean test
|
||||
|
||||
all: build
|
||||
|
||||
build:
|
||||
cp -r "$(DIR)/../packages/centos-7/rpms" .
|
||||
docker build -t $(IMAGE):$(SLURM_VERSION) .
|
||||
|
||||
clean:
|
||||
@[ -z $(docker images -q $(IMAGE):$(SLURM_VERSION)) ] || docker rmi $(IMAGE):$(SLURM_VERSION)
|
||||
rm -rf rpms
|
Reference in New Issue
Block a user