ansible/ubuntu-20.04/Dockerfile

14 lines
308 B
Docker
Raw Normal View History

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