-
Notifications
You must be signed in to change notification settings - Fork 7
/
bundle.Dockerfile
34 lines (29 loc) · 1.67 KB
/
bundle.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM registry.access.redhat.com/ubi9/ubi-micro@sha256:ac53e091e8bcaf2e33877dc26fd118aea7f31ba82b7c6f083e39ad9cea6691fc
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=openshift-builds-operator
LABEL operators.operatorframework.io.bundle.channels.v1=latest,openshift-builds-1.1
LABEL operators.operatorframework.io.bundle.channel.default.v1=latest
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.35.0
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/
LABEL com.redhat.openshift.versions="v4.12-v4.17" \
com.redhat.component="openshift-builds-operator-bundle-container" \
description="Red Hat OpenShift Builds Operator Bundle" \
distribution-scope="public" \
io.k8s.description="Red Hat OpenShift Builds Operator Bundle" \
io.k8s.display-name="Red Hat OpenShift Builds Operator Bundle" \
io.openshift.tags="builds,operator,bundle" \
maintainer="openshift-builds@redhat.com" \
name="openshift-builds/operator-bundle" \
release="0" \
summary="Red Hat OpenShift Builds Operator Bundle" \
url="https://catalog.redhat.com/software/containers/openshift-builds/openshift-builds-operator-bundle" \
vendor="Red Hat, Inc." \
version="v1.1.0"
COPY bundle/ /
COPY LICENSE /licenses/
USER 65532:65532