FROM alpine:latest
RUN apk add --no-cache ansible bash
RUN ansible --version
RUN useradd -m -s /bin/bash ansible
USER ansible
WORKDIR /home/ansible
