backup-bot/Makefile
Luke Murphy e0918d43b6
All checks were successful
continuous-integration/drone/push Build is passing
Use latest tags
2020-09-25 13:19:06 +02:00

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