Skip to content

Commit

Permalink
Use entitled Dockerfile for Konflux (#278)
Browse files Browse the repository at this point in the history
* 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
zlayne authored Jun 4, 2024
1 parent 814006e commit 853d5ef
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions Dockerfile.rhtap
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"]

0 comments on commit 853d5ef

Please sign in to comment.