20 lines
570 B
Docker
20 lines
570 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
software-properties-common \
|
|
apt-utils \
|
|
&& apt-add-repository ppa:ansible/ansible \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
ansible \
|
|
python-apt \
|
|
git-core \
|
|
openssh-client \
|
|
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 \
|
|
&& apt-get clean
|
|
|
|
CMD ["ansible-playbook", "--help"]
|