Files
setup-ansible/Dockerfile
Alex Frantz 0d646b0d41
All checks were successful
Build and Publish Runner Image / build (push) Successful in 2m15s
install docker-cli
2026-04-06 13:40:50 -04:00

7 lines
243 B
Docker

FROM node:20-alpine
RUN apk add --no-cache python3 py3-pip openssh-client docker-cli git && \
pip3 install --no-cache-dir --break-system-packages ansible-core && \
ansible-galaxy collection install community.docker
WORKDIR /workspace