feat: don't require build-args for the labels, just write the directly via --label

This commit is contained in:
Tobias Schmidl 2023-09-22 08:17:49 +02:00
parent af0c32c7ba
commit 5c722b47c6
2 changed files with 4 additions and 12 deletions

View file

@ -5,10 +5,11 @@
DOCKER := docker
BUILDER := ${DOCKER} buildx
TAG := git.schmidl.dev/schtobia/buildimage
URL:= https://${TAG}
VERSION = $(shell git describe --tags --always --dirty)
build: dockerfile
@${BUILDER} build --build-arg=GIT_COMMIT=$(shell git describe --always) --build-arg=VERSION=${VERSION} --build-arg=TIMESTAMP="$(shell date -u -Iseconds)" -t ${TAG} -t ${TAG}:${VERSION} .
@${BUILDER} build --label org.opencontainers.image.revision=$(shell git describe --always) --label org.opencontainers.image.version=${VERSION} --label org.opencontainers.image.created="$(shell date -u -Iseconds)" --label org.opencontainers.image.source=https://${TAG}.git --label org.opencontainers.image.url=https://${TAG} -t ${TAG} -t ${TAG}:${VERSION} .
.PHONY: publish
publish: build