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