2016-08-06 13:28:41 +00:00
|
|
|
FROM debian:8
|
|
|
|
|
2016-08-06 14:17:26 +00:00
|
|
|
RUN apt-get -q update \
|
|
|
|
&& apt-get -yq install --no-install-recommends \
|
2016-08-06 14:12:11 +00:00
|
|
|
build-essential \
|
|
|
|
libffi-dev \
|
|
|
|
libssl-dev \
|
2020-10-31 16:24:36 +00:00
|
|
|
python3 \
|
|
|
|
python3-dev \
|
|
|
|
python3-pip \
|
2018-01-18 22:56:35 +00:00
|
|
|
git \
|
2018-01-29 21:40:35 +00:00
|
|
|
apt-utils \
|
2020-10-31 15:47:55 +00:00
|
|
|
curl \
|
|
|
|
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
|
|
|
|
&& chmod +rx /usr/local/bin/goss \
|
2016-08-14 17:03:43 +00:00
|
|
|
&& apt-get clean \
|
2020-10-31 16:24:36 +00:00
|
|
|
&& pip3 install --upgrade pip
|
2018-01-18 22:56:35 +00:00
|
|
|
|
2020-10-31 16:24:36 +00:00
|
|
|
RUN pip3 install ansible
|
2016-08-06 13:28:41 +00:00
|
|
|
|
|
|
|
CMD ["ansible-playbook", "--help"]
|