19 lines
563 B
Docker
19 lines
563 B
Docker
# Inpsired by William Yeh's Docker image however this one is kept up to date
|
|
# with the latest base image versions available, and includes ansible-lint
|
|
|
|
FROM alpine:latest
|
|
|
|
RUN apk --update add sudo python3 git openssl ca-certificates openssh-client rsync && \
|
|
apk --update add --virtual build-dependencies \
|
|
python3-dev libffi-dev openssl-dev build-base \
|
|
ansible py3-ansible-lint && \
|
|
apk del build-dependencies && \
|
|
rm -rf /var/cache/apk/* && \
|
|
mkdir -p /etc/ansible && \
|
|
echo localhost > /etc/ansible/hosts
|
|
|
|
|
|
CMD ["ansible-playbook", "--version"]
|
|
|
|
|