Initial Commit
Some checks failed
/ build-docker (push) Failing after 1m40s

This commit is contained in:
2024-11-09 11:56:17 +10:00
commit 052edfdc6a
4 changed files with 59 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM alpine:latest@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d
RUN apk update
RUN apk add --no-cache openssh nodejs npm git bash openssh python3 py3-pip py3-passlib
RUN python3 -m pip install --user ansible --break-system-packages
ENV PATH="/root/.local/bin:$PATH"