awx superuser is not created when custom image ofquay.io/ansible/awx is used

Hello,

As I needed the “aws-task” container in k8s to include other OS command, I created a Dockerfile like this:

FROM quay.io/ansible/awx

USER root

RUN dnf install -y gcc python-devel openssl-devel jq wget

RUN python3 -m pip install pysocks

RUN python3 -m pip install pywinrm

RUN update-crypto-policies --set DEFAULT:SHA1 RUN dnf -y clean all

Then publish the image in https://quay.io/

Crate a CRD .yml to include that image

what do you mean by awx user? do you mean an Admin user in the AWX app itself? or are you referring to the awx user in the container?
Also more info about what you are trying to achieve, i.e. should these be installed in a custom EE instead of the awx image?

AWX Team