diff --git a/.woodpecker.yml b/.woodpecker.yml index 1e1fe20..1d6198c 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,6 +1,7 @@ # SPDX-FileCopyrightText: 2023 Tobias Schmidl # # SPDX-License-Identifier: AGPL-3.0-or-later + --- variables: - &repo 'git.schmidl.dev/schtobia/buildimage' @@ -12,7 +13,10 @@ steps: repo: *repo registry: git.schmidl.dev dry_run: true -# output: type=oci,dest=${CI_REPO_OWNER}-buildimage.tar + when: + branch: + exclude: [ master ] + event: push publish-next-agent: image: woodpeckerci/plugin-docker-buildx @@ -23,6 +27,10 @@ steps: registry: git.schmidl.dev dockerfile: dockerfile platforms: linux/amd64,linux/arm64/v8 + username: + from_secret: docker_username + password: + from_secret: docker_password when: branch: master event: push diff --git a/Makefile b/Makefile index 630f7c9..fdb7fb8 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/README.md b/README.md index 75438ce..067390a 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,5 @@ SPDX-License-Identifier: AGPL-3.0-or-later --> # buildimage + +![pipeline status](https://ci.schmidl.dev/api/badges/3/status.svg?branch=master) diff --git a/dockerfile b/dockerfile index 48ec00a..4878406 100644 --- a/dockerfile +++ b/dockerfile @@ -5,19 +5,14 @@ FROM debian:bullseye-slim ARG DEBIAN_FRONTEND=noninteractive -ARG GIT_COMMIT -ARG VERSION -ARG TIMESTAMP LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later" \ org.opencontainers.image.base.name="docker.io/debian:bullseye-slim" \ -org.opencontainers.image.title=buildimage \ -org.opencontainers.image.source="https://git.schmidl.dev/schtobia/buildimage" \ -org.opencontainers.image.url="https://git.schmidl.dev/schtobia/buildimage" +org.opencontainers.image.title=buildimage # editorconfig-checker-disable RUN apt update \ - && apt install --assume-yes --no-install-recommends \ + && apt install --assume-yes --no-install-recommends --quiet \ build-essential \ dpkg-sig \ git \ @@ -30,7 +25,3 @@ RUN useradd -rm builder USER builder WORKDIR /workdir - -LABEL org.opencontainers.image.revision=${GIT_COMMIT} -LABEL org.opencontainers.image.version=${VERSION} -LABEL org.opencontainers.image.created=${TIMESTAMP}