FROM alpine:latest

RUN echo "build started.."

# Install Ansible
RUN apk add --no-cache ansible

# Verify installation
RUN ansible --version

