Ansible Builder is building your execution environment image, “quay.io/edvkai/awx-ee:latest”. File ./context/_build/requirements.yml is already up-to-date. Writing partial Containerfile without collection requirements Running command: docker build -f ./context/Dockerfile -t quay.io/edvkai/awx-ee:latest ./context Sending build context to Docker daemon 6.656 kB Step 1/8 : ARG ANSIBLE_RUNNER_IMAGE=quay.io/ansible/ansible-runner:devel Please provide a source image with from prior to commit
I recently created the EE image by following the below steps:
Creating the execution_ environment.yml file. When you run the Ansible builder, this file basically generates the docker file and builds the AWX EE image.
In this yaml file, you can give the release version. Depending on which version on Ansible/Ansible runner you want, you can go to that. This information is present in tools/requirements_stable_.txt in Ansible runner repo. If you are okay with the latest, you can pick the quay latest and apply it in the execution environment.yaml file.
In the Ansible build command, I gave the flag -f execution_environment.yaml file.
Can you share your execution_environment file here?