diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..018a5e3 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +ifeq (, $(shell docker --version)) + $(error "Please install docker") +endif + +NS ?= andrey01 +NAME ?= chrome +VERSION ?= latest + +default: build + +build: + docker build -t $(NS)/$(NAME):$(VERSION) -f Dockerfile -- . + +publish: + docker push $(NS)/$(NAME):$(VERSION) + +clean: + docker rmi $(NS)/$(NAME):$(VERSION)