aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 90f543a75900f0c35ef0d7c363c6518bf26c8577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
TAG:=kennyballou/docker-awscli:latest

.PHONY: all
all: build

.PHONY: build
build: Dockerfile
	docker build -t $(TAG) .

.PHONY: clean
clean:
	-docker rmi $(TAG)