From eb553826bf65f80472132cc869ecb913ecfd06e9 Mon Sep 17 00:00:00 2001 From: Vincent Date: Sun, 31 Mar 2024 22:21:05 -0600 Subject: [PATCH] Use python 3.12 by default, update doc --- README.md | 4 ++-- execution-environment.yml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6fe3b5a..351d342 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,10 @@ First, [install ansible-builder](https://ansible-builder.readthedocs.io/en/stabl Then run the following command from the root of this repo: ```bash -$ ansible-builder build -v3 -t quay.io/ansible/awx-ee # --container-runtime=docker # Is podman by default +$ ansible-builder build -v3 -t quay.io/influxdb/awx-ee --container-runtime=docker # Uses podman by default ``` ## Build the image via CI -The Github actions configuration in this repository should work for you as well, provided that you're using that platform. Just updates the secrets to reflect your chosen container repository. +The Github actions configuration in this repository should work for you as well, provided that you're using that platform. Just update the secrets to reflect your chosen container repository. diff --git a/execution-environment.yml b/execution-environment.yml index 427e868..2d83975 100644 --- a/execution-environment.yml +++ b/execution-environment.yml @@ -64,6 +64,7 @@ dependencies: additional_build_steps: append_base: - RUN $PYCMD -m pip install -U pip + - RUN unlink /usr/bin/python3 && ln -s /usr/bin/python3.12 /usr/bin/python3 append_final: - COPY --from=quay.io/ansible/receptor:v1.4.4 /usr/bin/receptor /usr/bin/receptor - RUN mkdir -p /var/run/receptor