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 31a3eed commit 1b503d2Copy full SHA for 1b503d2
ansible/files/multinode.sh
@@ -257,13 +257,15 @@ function build_kayobe_image() {
257
258
# Set base image for kayobe container. Use rocky 9 by default
259
export BASE_IMAGE=rockylinux:9
260
+ export USE_PYTHON_312=true
261
262
if [[ "$(sudo docker image ls)" == *"kayobe"* ]]; then
263
echo "Image already exists skipping docker build"
264
else
265
sudo DOCKER_BUILDKIT=1 docker build \
266
--network host \
267
--build-arg BASE_IMAGE=$BASE_IMAGE \
268
+ --build-arg USE_PYTHON_312=$USE_PYTHON_312 \
269
--file ${config_directories[kayobe]}/.automation/docker/kayobe/Dockerfile \
270
--tag kayobe:latest \
271
${config_directories[kayobe]}
0 commit comments