2016-08-06 15:28:41 +02:00
|
|
|
FROM debian:8
|
|
|
|
|
2016-08-06 16:17:26 +02:00
|
|
|
RUN apt-get -q update \
|
|
|
|
&& apt-get -yq install --no-install-recommends \
|
2016-08-06 16:12:11 +02:00
|
|
|
build-essential \
|
|
|
|
libffi-dev \
|
|
|
|
libssl-dev \
|
2020-10-31 17:24:36 +01:00
|
|
|
python3 \
|
|
|
|
python3-dev \
|
|
|
|
python3-pip \
|
2018-01-18 23:56:35 +01:00
|
|
|
git \
|
2018-01-29 22:40:35 +01:00
|
|
|
apt-utils \
|
2020-10-31 16:47:55 +01: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 19:03:43 +02:00
|
|
|
&& apt-get clean \
|
2020-10-31 17:24:36 +01:00
|
|
|
&& pip3 install --upgrade pip
|
2018-01-18 23:56:35 +01:00
|
|
|
|
2020-10-31 17:24:36 +01:00
|
|
|
RUN pip3 install ansible
|
2016-08-06 15:28:41 +02:00
|
|
|
|
|
|
|
CMD ["ansible-playbook", "--help"]
|