Makefile 239 Bytes
Newer Older
Xie Zhou's avatar
init  
Xie Zhou committed
1
2
3
4
5
6
7
8
9
10
11
12
13
IMAGE=hub.cstcloud.cn/csst/detector-effect-correction

build:
	docker build --network=host -t $(IMAGE) .

push:
	docker push $(IMAGE)

clean:
	docker rmi $(IMAGE)

rmi:
	for H in h0 h1 h2 ; do echo $$H ; ssh $$H docker rmi $(IMAGE) ; done