forked from teslamate-org/teslamate
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
19 lines (14 loc) · 652 Bytes
/
Makefile
File metadata and controls
19 lines (14 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.PHONY: help vsn grafana teslamate
APP_NAME ?= `grep 'app:' mix.exs | sed -e 's/\[//g' -e 's/ //g' -e 's/app://' -e 's/[:,]//g'`
APP_VSN ?= `cat VERSION`
BUILD ?= `git rev-parse --short HEAD`
help: vsn
@perl -nle'print $& if m{^[a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
vsn:
@echo "$(APP_NAME):$(APP_VSN)-$(BUILD)"
teslamate: vsn ## Build teslamate Docker image
@docker build --pull \
-t $(APP_NAME):$(APP_VSN)-$(BUILD) \
-t $(APP_NAME) .
grafana: vsn ## Build teslamate-grafana Docker image
@cd grafana && docker build --pull -t teslamate-grafana .