We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b1d92a commit 3a7f380Copy full SHA for 3a7f380
cmd/codegen/hack/generate_and_sort_crds.sh
@@ -19,10 +19,10 @@ run_yq() {
19
log "yq (from https://github.com/kislyuk/yq) is missing, building a helper docker image ($image)..."
20
21
docker build -t $image - >&2 << EOF
22
-FROM bitnami/python:3.10
+FROM registry.suse.com/bci/python:3.11
23
24
-RUN install_packages jq
25
-RUN python -m pip install yq
+RUN zypper in -y jq
+RUN python3 -m pip install yq
26
EOF
27
docker run --rm -i -v ${PWD}:${PWD} -w ${PWD} ${image} yq $@
28
else
0 commit comments