forked from opendatahub-io/opendatahub-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.bundle
16 lines (13 loc) · 847 Bytes
/
Dockerfile.bundle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM scratch
# This arg should be updated to use the most recent release in deploy/olm-catalog/opendatahub
ARG OPERATOR_RELEASE=1.4.0
# Operator bundle Dockerfile
# See - https://github.com/operator-framework/operator-registry/blob/master/docs/design/operator-bundle.md
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=opendatahub-operator
LABEL operators.operatorframework.io.bundle.channels.v1=stable,rolling
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
COPY deploy/olm-catalog/opendatahub/${OPERATOR_RELEASE}/manifests /manifests/
COPY deploy/olm-catalog/opendatahub/${OPERATOR_RELEASE}/metadata /metadata/