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
Raw Permalink 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