diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..a46bedeb --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +VERSION=$(shell git rev-parse --short HEAD) +IMAGE_PREFIX=jupyter/ + +build-image: + docker build -t $(IMAGE_PREFIX)repo2docker:v$(VERSION) . + +push-image: + docker push $(IMAGE_PREFIX)repo2docker:v$(VERSION) + +.all: + build-image push-image