aboutsummaryrefslogtreecommitdiff
path: root/smokeping_prober/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'smokeping_prober/Makefile')
-rw-r--r--smokeping_prober/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/smokeping_prober/Makefile b/smokeping_prober/Makefile
deleted file mode 100644
index 2f2de74..0000000
--- a/smokeping_prober/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
1VERSION=0.3.0
2IMAGE=docker.crute.me/smokeping-prober:$(VERSION)
3LATEST=$(subst :$(VERSION),,$(IMAGE)):latest
4
5all:
6 docker pull golang:latest
7 docker pull alpine:latest
8 docker build -t $(IMAGE) .
9
10all-no-cache:
11 docker build \
12 --no-cache \
13 -t $(IMAGE) .
14
15publish:
16 docker push $(IMAGE)
17 docker tag $(IMAGE) $(LATEST)
18 docker push $(LATEST)