File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
build/forklift-operator-index Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
- FROM quay.io/operator-framework/opm:latest AS opm
1
+ # The OPM 1.53.0 has problem, once there will be new version with the fix we can bump to latest.
2
+ # https://github.com/operator-framework/operator-registry/pull/1664
3
+ # Ref: https://redhat-internal.slack.com/archives/C074JM28DTP/p1746458556603619
4
+ FROM quay.io/operator-framework/opm:v1.52.0 AS opm
2
5
FROM registry.access.redhat.com/ubi9-minimal:9.5-1739420147 AS builder
3
6
ARG CHANNELS="development"
4
7
ARG DEFAULT_CHANNEL="development"
@@ -15,7 +18,7 @@ WORKDIR /app
15
18
RUN cat catalog/operator.yml | envsubst > operator.yaml
16
19
RUN opm render ${OPERATOR_BUNDLE_IMAGE} ${OPM_OPTS} -o yaml >> operator.yaml
17
20
18
- FROM quay.io/operator-framework/opm:latest
21
+ FROM quay.io/operator-framework/opm:v1.52.0
19
22
20
23
COPY --from=builder /app/operator.yaml /configs/operator.yaml
21
24
You can’t perform that action at this time.
0 commit comments