feature ansible 0.0045
Some checks failed
Build Docker / build (push) Has been cancelled

This commit is contained in:
2026-03-01 02:34:28 +03:00
parent 9729df0fb2
commit 7b4f17ae79
7 changed files with 54 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
# Dockerfile.runner
FROM node:20-bullseye
# Устанавливаем зависимости
RUN apt-get update && apt-get install -y \
curl \
ansible \
&& rm -rf /var/lib/apt/lists/*
# Проверка версий
RUN node -v && npm -v && ansible --version