ubuntu 20.04 support

This commit is contained in:
2020-06-06 00:16:38 +02:00
parent d8e7aed134
commit e91f74e2ba
2 changed files with 44 additions and 0 deletions

16
ubuntu-20.04/Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM ubuntu:20.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 \
&& apt-get clean
CMD ["ansible-playbook", "--help"]