add a makefile

master
Andy 7 years ago
parent c90cc56146
commit b3e786cd28

@ -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)
Loading…
Cancel
Save