Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
259 B

  1. FROM ghcr.io/devture/ansible:11.1.0-r0-0
  2. # Install additional packages
  3. RUN apk add --no-cache \
  4. pwgen
  5. # Preserve command history across container restarts
  6. RUN SNIPPET="export HISTFILE=/commandhistory/.ash_history" \
  7. && echo "$SNIPPET" >> "/root/.profile"