Skip to content

Instantly share code, notes, and snippets.

@vwbusguy
Created March 30, 2022 22:39
Show Gist options
  • Save vwbusguy/0fe8ad7b1f9333301c629168af80955d to your computer and use it in GitHub Desktop.
Save vwbusguy/0fe8ad7b1f9333301c629168af80955d to your computer and use it in GitHub Desktop.
Enable cowsay in Ansible AWX EE
FROM ansible/awx-ee:latest
USER root
RUN dnf config-manager --set-enabled epel && \
dnf install epel-release epel-next-release -y && \
dnf install --refresh cowsay -y
USER 1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment