forked from opendatahub-io/data-science-pipelines-operator
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Review Dockerfile and RPMs files for odh-data-science-pipelines-opera…
…tor-controller for Konflux Build
- Loading branch information
1 parent
896a001
commit 3496b39
Showing
1 changed file
with
3 additions
and
7 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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# Build arguments | ||
ARG SOURCE_CODE=. | ||
ARG CI_CONTAINER_VERSION="unknown" | ||
|
||
FROM registry.redhat.io/ubi8/go-toolset@sha256:4ec05fd5b355106cc0d990021a05b71bbfb9231e4f5bdc0c5316515edf6a1c96 as builder | ||
|
||
|
@@ -28,19 +27,16 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -o manager | |
FROM registry.redhat.io/ubi8/ubi-minimal@sha256:7583ca0ea52001562bd81a961da3f75222209e6192e4e413ee226cff97dbd48c AS runtime | ||
|
||
## Build args to be used at this step | ||
ARG CI_CONTAINER_VERSION | ||
ARG USER=65532 | ||
|
||
LABEL com.redhat.component="odh-data-science-pipelines-operator-controller-container" \ | ||
name="managed-open-data-hub/odh-data-science-pipelines-operator-controller-rhel8" \ | ||
version="${CI_CONTAINER_VERSION}" \ | ||
git.url="${CI_DATA_SCIENCE_PIPELINES_OPERATOR_UPSTREAM_URL}" \ | ||
git.commit="${CI_DATA_SCIENCE_PIPELINES_OPERATOR_UPSTREAM_COMMIT}" \ | ||
description="Manages lifecycle of Data Science Pipelines Custom Resources and associated Kubernetes resources" \ | ||
summary="odh-data-science-pipelines-operator-controller" \ | ||
maintainer="['[email protected]']" \ | ||
io.openshift.expose-services="" \ | ||
io.k8s.display-name="data-science-pipelines-operator-controller" \ | ||
maintainer="['[email protected]']" \ | ||
description="Manages lifecycle of Data Science Pipelines Custom Resources and associated Kubernetes resources" \ | ||
io.k8s.discription="data-science-pipelines-operator-controller" \ | ||
com.redhat.license_terms="https://www.redhat.com/licenses/Red_Hat_Standard_EULA_20191108.pdf" | ||
|
||
## Install additional packages | ||
|