aboutsummaryrefslogtreecommitdiff
path: root/awstats/Makefile
blob: 52b31175f9e4cc2e83b564ed20866106d69ca6c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
IMAGE=docker.crute.me/awstats:latest

all:
	docker pull alpine:edge
	docker build -t $(IMAGE) .

all-no-cache:
	docker build --no-cache -t $(IMAGE) .

publish:
	docker push $(IMAGE)