notebooks/components/example-notebook-servers/base/Makefile

9 lines
208 B
Makefile

TAG ?= $(shell git describe --tags --always --dirty)
REGISTRY ?= kubeflownotebookswg
docker-build:
docker build -t ${REGISTRY}/base:${TAG} -f Dockerfile .
docker-push:
docker push ${REGISTRY}/base:${TAG}