This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
backup-bot/Makefile

13 lines
166 B
Makefile

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