build off of act ubuntu image
Some checks failed
Build and Publish Runner Image / build (push) Failing after 1m5s

This commit is contained in:
2026-01-10 00:12:51 -05:00
parent 0a95ede2be
commit a88b50568d

View File

@@ -1,13 +1,8 @@
FROM node:18-bullseye
FROM catthehacker/ubuntu:act-latest
RUN apt-get update && \
apt-get install -y \
python3 \
python3-pip \
git \
openssh-client \
docker.io && \
pip3 install ansible && \
RUN apt-add-repository ppa:ansible/ansible && \
apt-get update && \
apt-get install -y ansible && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*