added ubuntu 19.04

This commit is contained in:
2019-10-27 21:35:29 +01:00
parent 1dcddacca3
commit d0351f79ff
3 changed files with 48 additions and 1 deletions

16
ubuntu-19.04/Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM ubuntu:19.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"]