init
Some checks failed
Build and Publish Runner Image / build (push) Failing after 6s

This commit is contained in:
2026-01-09 17:43:17 -05:00
commit 34db434a4b
2 changed files with 47 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
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