Files
setup-ansible/Dockerfile
Alex Frantz 34db434a4b
Some checks failed
Build and Publish Runner Image / build (push) Failing after 6s
init
2026-01-09 17:43:17 -05:00

17 lines
334 B
Docker

FROM node:18-bullseye
RUN apt-get update && \
apt-get install -y \
python3 \
python3-pip \
git \
openssh-client \
docker.io && \
pip3 install ansible && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN node --version && \
npm --version && \
ansible --version && \
docker --version