-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from acavella/14-feature-add-oci-image-descrip…
…tion 14 feature add oci image description
- Loading branch information
Showing
3 changed files
with
26 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
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
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,4 +1,4 @@ | ||
ARG BUILD_TAG=v1.0.0-rc13 | ||
ARG BUILD_TAG=v1.0.0 | ||
|
||
FROM docker.io/library/golang:1.20.12-alpine3.19 as builder | ||
ARG BUILD_TAG | ||
|
@@ -12,8 +12,12 @@ RUN apk add --no-cache -U git \ | |
FROM registry.access.redhat.com/ubi9/ubi:9.3-1476 as runner | ||
ARG BUILD_TAG | ||
|
||
LABEL maintainer="Tony Cavella <[email protected]>" | ||
LABEL app.version=${BUILD_TAG} | ||
LABEL org.opencontainers.image.title="GoRevoke" | ||
LABEL org.opencontainers.image.version=${BUILD_TAG} | ||
LABEL org.opencontainers.image.author="Tony Cavella <[email protected]>" | ||
LABEL org.opencontainers.image.url="https://github.com/acavella/gorevoke" | ||
LABEL org.opencontainers.image.description="GoRevoke is a standalone Certificate Revocation List Distrution Point written in Go, designed to be lightweight and fully self-contained." | ||
LABEL org.opencontainers.image.licenses="MIT" | ||
|
||
COPY --from=builder /usr/local/bin/gorevoke/ /usr/local/bin/gorevoke/ | ||
|
||
|