summaryrefslogtreecommitdiff
path: root/Makefile
blob: 382d7b47c9f522589ed458e896bce6b9eb68c071 (plain)
1
2
3
4
5
6
7
8
9
TAG=kennyballou/erlang-dev
all: build
.PHONY: all clean

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

clean:
	@docker rmi ${TAG}