-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use entitled Dockerfile for Konflux (#278)
* Use entitled Dockerfile for Konflux Signed-off-by: zlayne <[email protected]> * Update entitled Dockerfile Signed-off-by: zlayne <[email protected]> --------- Signed-off-by: zlayne <[email protected]>
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright Contributors to the Open Cluster Management project | ||
|
||
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.21 AS builder | ||
|
||
WORKDIR /go/src/github.com/stolostron/search-collector | ||
COPY . . | ||
RUN go mod vendor | ||
RUN CGO_ENABLED=1 GOGC=25 go build -trimpath -o main main.go | ||
|
||
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest | ||
|
||
ARG VCS_REF | ||
ARG VCS_URL | ||
ARG IMAGE_NAME | ||
ARG IMAGE_DESCRIPTION | ||
ARG IMAGE_DISPLAY_NAME | ||
ARG IMAGE_NAME_ARCH | ||
ARG IMAGE_MAINTAINER | ||
ARG IMAGE_VENDOR | ||
ARG IMAGE_VERSION | ||
ARG IMAGE_RELEASE | ||
ARG IMAGE_SUMMARY | ||
ARG IMAGE_OPENSHIFT_TAGS | ||
|
||
LABEL org.label-schema.vendor="Red Hat" \ | ||
org.label-schema.name="$IMAGE_NAME_ARCH" \ | ||
org.label-schema.description="$IMAGE_DESCRIPTION" \ | ||
org.label-schema.vcs-ref=$VCS_REF \ | ||
org.label-schema.vcs-url=$VCS_URL \ | ||
org.label-schema.license="Red Hat Advanced Cluster Management for Kubernetes EULA" \ | ||
org.label-schema.schema-version="1.0" \ | ||
name="$IMAGE_NAME" \ | ||
maintainer="$IMAGE_MAINTAINER" \ | ||
vendor="$IMAGE_VENDOR" \ | ||
version="$IMAGE_VERSION" \ | ||
release="$IMAGE_RELEASE" \ | ||
description="$IMAGE_DESCRIPTION" \ | ||
summary="$IMAGE_SUMMARY" \ | ||
io.k8s.display-name="$IMAGE_DISPLAY_NAME" \ | ||
io.k8s.description="$IMAGE_DESCRIPTION" \ | ||
io.openshift.tags="$IMAGE_OPENSHIFT_TAGS" | ||
|
||
RUN microdnf update -y &&\ | ||
microdnf install -y ca-certificates vi --nodocs &&\ | ||
mkdir /licenses &&\ | ||
microdnf clean all | ||
|
||
COPY --from=builder /go/src/github.com/stolostron/search-collector/main /bin/main | ||
|
||
ENV VCS_REF="$VCS_REF" \ | ||
USER_UID=1001 \ | ||
GOGC=25 | ||
|
||
USER ${USER_UID} | ||
ENTRYPOINT ["/bin/main"] |