backup-bot/Makefile

13 lines
165 B
Makefile
Raw Normal View History

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