2025-01-08 19:01:06 +00:00
|
|
|
FROM alpine:latest@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
|
2024-11-09 11:56:17 +10:00
|
|
|
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"
|
|
|
|
|
|
|
|
|