Files
setup-ansible/Dockerfile
Alex Frantz bfde2f4d98
All checks were successful
Build and Publish Runner Image / build (push) Successful in 1m17s
fix command
2026-01-10 00:42:55 -05:00

18 lines
469 B
Docker

# FROM catthehacker/ubuntu:act-latest
# RUN apt-add-repository ppa:ansible/ansible && \
# apt-get update && \
# apt-get install -y ansible && \
# apt-get clean && \
# rm -rf /var/lib/apt/lists/*
# RUN node --version && \
# npm --version && \
# ansible --version && \
# docker --version
FROM node:20-alpine
RUN apk add --no-cache python3 py3-pip && \
pip3 install --no-cache-dir --break-system-packages ansible-core
WORKDIR /workspace