We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d952010 commit 2ab5599Copy full SHA for 2ab5599
Makefile
@@ -1,3 +1,16 @@
1
+.DEFAULT_GOAL = all
2
+
3
+ifeq ($(BERSERKER_TAG),)
4
+BERSERKER_TAG=$(shell git describe --tags --abbrev=10 --dirty)
5
+endif
6
7
8
+.PHONY: all
9
all:
10
docker build -t builder -f Dockerfile.build .
11
docker build -t berserker .
12
13
14
+.PHONY: tag
15
+tag:
16
+ @echo "$(BERSERKER_TAG)"
0 commit comments