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

10 lines
276 B
Makefile

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