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

7 lines
151 B
Makefile

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