-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move from org.label-schema to org.opencontainers labels schema
- Loading branch information
1 parent
9a1ed46
commit 07b9a71
Showing
1 changed file
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
FROM alpine:3.21.0 | ||
|
||
MAINTAINER Michal Orzechowski <[email protected]> | ||
|
||
ARG VCS_REF | ||
ARG BUILD_DATE | ||
ARG TARGETARCH | ||
|
||
# Metadata | ||
LABEL org.label-schema.vcs-ref=$VCS_REF \ | ||
org.label-schema.vcs-url="https://github.com/groundnuty/k8s-wait-for" \ | ||
org.label-schema.build-date=$BUILD_DATE \ | ||
org.label-schema.docker.dockerfile="/Dockerfile" | ||
LABEL org.opencontainers.image.revision=$VCS_REF \ | ||
org.opencontainers.image.created=$BUILD_DATE \ | ||
org.opencontainers.image.ref.name="k8s-wait-for" \ | ||
org.opencontainers.image.ref.title="k8s-wait-for" \ | ||
org.opencontainers.image.description="Allow to wait for a k8s service, job or pods to enter a desired state" \ | ||
org.opencontainers.image.licenses="MIT" \ | ||
org.opencontainers.image.authors="Michal Orzechowski <[email protected]>" \ | ||
org.opencontainers.image.source="https://github.com/groundnuty/k8s-wait-for" | ||
|
||
ENV KUBE_LATEST_VERSION="v1.31.4" | ||
|
||
|