-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.template
27 lines (19 loc) · 1.03 KB
/
Dockerfile.template
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
FROM scratch
ADD metadata/ /metadata/
ADD manifests/ /manifests/
# The following placeholder is replaced by scripting to be a set of LABELS
# duplicating the content of metadata/annotations.yaml.
!!ANNOTATION_LABELS!!
# These are three labels needed to control how the downstream buiild pipeline should
# handle this container image:
# This first label tells the pipeline that this is a bundle image and should be
# delivered via an index image:
LABEL com.redhat.delivery.operator.bundle=true
# This label tells the pipeline which versions of OpenShift the operator supports.
# This is used to control which index images should include this operator.
LABEL com.redhat.openshift.versions="V4.5"
# This label tells the pipeline that this operator should *also* be supported on
# OCP 4.4 and earlier. It is used to control whether or not the pipeline should attempt
# to automatically backport this content into the old App Registry format and upload it
# to the quay.io application registry endpoints.
LABEL com.redhat.delivery.backport=true