File tree 3 files changed +13
-12
lines changed
3 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 21
21
CARGO_TERM_COLOR : always
22
22
CARGO_INCREMENTAL : ' 0'
23
23
CARGO_PROFILE_DEV_DEBUG : ' 0'
24
- RUST_TOOLCHAIN_VERSION : " 1.77.0 "
24
+ RUST_TOOLCHAIN_VERSION : " 1.77.2 "
25
25
RUSTFLAGS : " -D warnings"
26
26
RUSTDOCFLAGS : " -D warnings"
27
27
RUST_LOG : " info"
Original file line number Diff line number Diff line change 2
2
# This file is automatically generated from the templates in stackabletech/operator-templating
3
3
# DON'T MANUALLY EDIT THIS FILE
4
4
# =============
5
- FROM oci.stackable.tech/sdp/ubi8 -rust-builder AS builder
5
+ FROM oci.stackable.tech/sdp/ubi9 -rust-builder AS builder
6
6
7
- FROM registry.access.redhat.com/ubi8 /ubi-minimal AS operator
7
+ FROM registry.access.redhat.com/ubi9 /ubi-minimal AS operator
8
8
9
9
ARG VERSION
10
10
ARG RELEASE="1"
@@ -17,14 +17,15 @@ LABEL name="Stackable Operator for Apache ZooKeeper" \
17
17
summary="Deploy and manage Apache ZooKeeper clusters." \
18
18
description="Deploy and manage Apache ZooKeeper clusters."
19
19
20
- # Update image
21
- RUN microdnf install -y yum \
22
- && yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical \
23
- && yum clean all \
24
- && microdnf clean all
25
-
26
- # Install kerberos client libraries
27
- RUN microdnf install -y krb5-libs libkadm5 && microdnf clean all
20
+ # Update image and install kerberos client libraries
21
+ # install_weak_deps in microdnf does not support the literal "False" as dnf does
22
+ # https://github.com/rpm-software-management/microdnf/blob/a600c62f29262d71a6259b70dc220df65a2ab9b5/dnf/dnf-main.c#L176-L189
23
+ RUN microdnf update -y --setopt=install_weak_deps=0 \
24
+ && microdnf install -y --setopt=install_weak_deps=0 \
25
+ krb5-libs \
26
+ libkadm5 \
27
+ && microdnf clean all \
28
+ && rm -rf /var/cache/yum
28
29
29
30
COPY LICENSE /licenses/LICENSE
30
31
Original file line number Diff line number Diff line change 1
1
[toolchain ]
2
- channel = " 1.77.0 "
2
+ channel = " 1.77.2 "
You can’t perform that action at this time.
0 commit comments