+ Working ansible image
This commit is contained in:
parent
2eae59e415
commit
c8a13e5a58
24
ansible/Dockerfile
Normal file
24
ansible/Dockerfile
Normal file
@ -0,0 +1,24 @@
|
||||
# Inpsired by William Yeh's Docker image however this one is kept up to date
|
||||
# with the latest base image versions available
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
MAINTAINER shockrah :^)
|
||||
|
||||
RUN apk --update add sudo python3 openssl ca-certificates openssh-client rsync && \
|
||||
apk --update add --virtual build-dependencies \
|
||||
python3-dev libffi-dev openssl-dev build-base && \
|
||||
python3 -m ensurepip && \
|
||||
pip3 install --upgrade pip cffi && \
|
||||
pip3 install ansible && \
|
||||
apk del build-dependencies && \
|
||||
rm -rf /var/cache/apk/* && \
|
||||
mkdir -p /etc/ansible && \
|
||||
echo localhost > /etc/ansible/hosts
|
||||
|
||||
|
||||
CMD ["ansible-playbook", "--version"]
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user