8 lines
185 B
Docker
8 lines
185 B
Docker
FROM alpine:3.22
|
|
RUN apk update && \
|
|
apk add ansible bash openssh-client py3-pip step-cli
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|