All checks were successful
Build and push docker image / build (push) Successful in 1m27s
16 lines
429 B
Docker
16 lines
429 B
Docker
# original: https://github.com/William-Yeh/docker-ansible/blob/master/alpine3/Dockerfile
|
|
|
|
FROM alpine:latest
|
|
|
|
RUN echo "===> Adding Python runtime..." && \
|
|
apk add --no-cache ansible ansible-lint openssl ca-certificates sshpass openssh-client git curl bash && \
|
|
|
|
echo "===> Removing package list..." && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
RUN mkdir /ansible
|
|
|
|
WORKDIR /ansible
|
|
|
|
CMD ["/usr/bin/ansible-playbook", "--version"]
|