forked from geerlingguy/docker-debian9-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
31 lines (24 loc) · 938 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
FROM debian:stretch
LABEL maintainer="Jeff Geerling"
ENV DEBIAN_FRONTEND noninteractive
ENV pip_packages "ansible cryptography"
# Install dependencies.
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
sudo systemd \
build-essential wget libffi-dev libssl-dev \
python-pip python-dev python-setuptools python-wheel python3 python3-pip \
&& rm -rf /var/lib/apt/lists/* \
&& rm -Rf /usr/share/doc && rm -Rf /usr/share/man \
&& apt-get clean \
&& wget https://bootstrap.pypa.io/get-pip.py \
&& python get-pip.py
# Install Ansible via pip.
RUN pip install $pip_packages
COPY initctl_faker .
RUN chmod +x initctl_faker && rm -fr /sbin/initctl && ln -s /initctl_faker /sbin/initctl
# Install Ansible inventory file.
RUN mkdir -p /etc/ansible
RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts
VOLUME ["/sys/fs/cgroup"]
CMD ["/lib/systemd/systemd"]