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

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

clean:
	@docker rmi ${TAG}