Skip to content

Commit

Permalink
move from org.label-schema to org.opencontainers labels schema
Browse files Browse the repository at this point in the history
  • Loading branch information
groundnuty committed Jan 6, 2025
1 parent 9a1ed46 commit 07b9a71
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Dockerfile
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"

Expand Down

0 comments on commit 07b9a71

Please sign in to comment.