Skip to content

Commit b92b663

Browse files
Merge pull request #560 from samanthajayasinghe/fix-image-tag
Fix dockerfile ubi image tag
2 parents 74809c5 + 0d0c738 commit b92b663

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is for CI test and should build on x86_64 environment
22

3-
FROM registry.access.redhat.com/ubi9/ubi:9.4-947 as base
3+
FROM registry.access.redhat.com/ubi9:9.4-1214.1729773476 as base
44

55
### Pre-install dependencies
66
# These packages will end up in the final image
@@ -10,7 +10,7 @@ RUN yum --assumeyes install \
1010
&& yum clean all;
1111

1212
### Build backplane-cli
13-
FROM registry.access.redhat.com/ubi9/ubi:9.4-947 as bp-cli-builder
13+
FROM registry.access.redhat.com/ubi9/ubi:9.4-1214.1729773476 as bp-cli-builder
1414

1515
RUN yum install --assumeyes \
1616
make \
@@ -38,7 +38,7 @@ RUN cp ./ocm-backplane /out
3838
RUN chmod -R +x /out
3939

4040
### Build dependencies
41-
FROM registry.access.redhat.com/ubi9/ubi:9.4-947 as dep-builder
41+
FROM registry.access.redhat.com/ubi9/ubi:9.4-1214.1729773476 as dep-builder
4242

4343
RUN yum install --assumeyes \
4444
jq \

0 commit comments

Comments
 (0)