12 lines
364 B
Makefile
12 lines
364 B
Makefile
TAG ?= $(shell git describe --tags --always --dirty)
|
|
REGISTRY ?= kubeflownotebookswg
|
|
|
|
docker-build-jupyter:
|
|
make docker-build -C ../jupyter TAG=${TAG}
|
|
|
|
docker-build: docker-build-jupyter
|
|
docker build -t ${REGISTRY}/jupyter-scipy:${TAG} --build-arg BASE_IMG=${REGISTRY}/jupyter:${TAG} -f Dockerfile .
|
|
|
|
docker-push:
|
|
docker push ${REGISTRY}/jupyter-scipy:${TAG}
|