maint: initial commit

This commit is contained in:
2025-08-13 16:11:13 -07:00
commit 702b27e583
4 changed files with 122 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM alpine:3.22
RUN apk update && \
apk add bash py3-pip step-cli && \
pip3 install ansible
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]