Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

10 righe
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"