notebooks/components/example-notebook-servers/rstudio-tidyverse/Makefile

10 lines
303 B
Makefile

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