restic/Makefile

16 lines
276 B
Makefile
Raw Normal View History

2023-04-12 14:47:01 +00:00
.PHONY: default build
-include .env
VERSION=0.15.1-1.2
SHELL := /bin/bash
default: build
build:
podman build --build-arg VERSION=$(VERSION) --tag docker.io/bardak/restic:$(VERSION) .
push:
podman push --creds $(USERNAME):$(PASSWORD) docker.io/bardak/restic:$(VERSION)