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