8 lines
296 B
Docker
8 lines
296 B
Docker
FROM alpine:latest@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412
|
|
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"
|
|
|
|
|