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