2016-08-14 20:04:57 +00:00
|
|
|
FROM ubuntu:14.04
|
|
|
|
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y --no-install-recommends \
|
|
|
|
software-properties-common \
|
2018-01-29 21:40:35 +00:00
|
|
|
apt-utils \
|
2016-08-14 20:04:57 +00:00
|
|
|
&& apt-add-repository ppa:ansible/ansible \
|
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get install -y --no-install-recommends \
|
|
|
|
ansible \
|
2019-10-08 19:53:22 +00:00
|
|
|
git \
|
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 20:04:57 +00:00
|
|
|
&& apt-get clean
|
|
|
|
|
|
|
|
CMD ["ansible-playbook", "--help"]
|