diff options
Diffstat (limited to 'ansible/Dockerfile')
-rw-r--r-- | ansible/Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ansible/Dockerfile b/ansible/Dockerfile new file mode 100644 index 0000000..c654f6a --- /dev/null +++ b/ansible/Dockerfile @@ -0,0 +1,14 @@ +FROM cytopia/ansible:2.10-tools + +ENV PYTHONDONTWRITEBYTECODE=1 \ + PYTHONUNBUFFERED=1 + +RUN apk add --no-cache \ + bash openssh sshpass rsync curl jq git vim less \ + py3-netaddr \ + py3-paramiko py3-cryptography \ + py3-lxml py3-requests py3-yaml \ + py3-jmespath py3-xmltodict py3-jsonschema py3-psutil + +WORKDIR /work +CMD ["ansible", "--version"] |