ansible/ubuntu-20.04/Dockerfile

17 lines
477 B
Docker
Raw Normal View History

2020-06-05 22:16:38 +00:00
FROM ubuntu:20.04
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
2020-06-05 22:16:38 +00:00
software-properties-common \
apt-utils \
ansible \
python-apt \
git-core \
openssh-client \
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 \
2020-06-05 22:16:38 +00:00
&& apt-get clean
CMD ["ansible-playbook", "--help"]