Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/remove jq #79

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
move from org.label-schema to org.opencontainers labels schema
groundnuty committed Jan 6, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 07b9a718b0ca3f636ad034dacac2c4d86c864f45
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"