aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: b87311340aff7dd6a0feab65eebf8eb85b92ea8a (plain)
1
2
3
4
5
6
7
8
9
TAG=kennyballou/docker-elixir-centos
all: build
.PHONY: all clean

build: Dockerfile
	@docker build -t ${TAG} .

clean:
	@docker rmi ${TAG}