backup-bot/Makefile

13 lines
166 B
Makefile
Raw Normal View History

2020-09-18 07:18:39 +00:00
IMAGE := decentral1se/backup-bot
2020-09-25 11:18:54 +00:00
TAG := latest
2020-09-18 07:18:39 +00:00
default: build
build:
@docker build -t $(IMAGE):$(TAG) .
push:
@docker push $(IMAGE):$(TAG)
.PHONY: build push