ansible/ubuntu-20.04/Dockerfile

14 lines
277 B
Docker
Raw Normal View History

2020-06-05 22:16:38 +00:00
FROM ubuntu:20.04
RUN apt-get update \
&& 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"]