]> git.immae.eu Git - github/fretlink/docker-ansible.git/blob - alpine3/Dockerfile
517484be08d15de6f4dfdff2495f3c52ae07c651
[github/fretlink/docker-ansible.git] / alpine3 / Dockerfile
1 # Dockerfile for building Ansible image for Alpine 3, with as few additional software as possible.
2 #
3 # @see https://github.com/gliderlabs/docker-alpine/blob/master/docs/usage.md
4 #
5 # Version 1.0
6 #
7
8
9 # pull base image
10 FROM alpine:3.4
11
12 MAINTAINER William Yeh <william.pjyeh@gmail.com>
13
14
15 RUN echo "===> Adding Python runtime..." && \
16 apk --update add python py-pip openssl ca-certificates && \
17 apk --update add --virtual build-dependencies \
18 python-dev libffi-dev openssl-dev build-base && \
19 pip install --upgrade pip cffi && \
20 \
21 \
22 echo "===> Installing Ansible..." && \
23 pip install ansible && \
24 \
25 \
26 echo "===> Removing package list..." && \
27 apk del build-dependencies && \
28 rm -rf /var/cache/apk/* && \
29 \
30 \
31 echo "===> Adding hosts for convenience..." && \
32 mkdir -p /etc/ansible && \
33 echo 'localhost' > /etc/ansible/hosts
34
35
36 # default command: display Ansible version
37 CMD [ "ansible-playbook", "--version" ]