backup-bot/Makefile

13 lines
165 B
Makefile

IMAGE := decentral1se/backup-bot
TAG := 0.0.1
default: build
build:
@docker build -t $(IMAGE):$(TAG) .
push:
@docker push $(IMAGE):$(TAG)
.PHONY: build push