12 lines
238 B
Docker
12 lines
238 B
Docker
|
FROM ubuntu:16.04
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install -y software-properties-common \
|
||
|
&& apt-add-repository ppa:ansible/ansible \
|
||
|
&& apt-get update \
|
||
|
&& apt-get install -y \
|
||
|
ansible \
|
||
|
&& apt-get autoclean
|
||
|
|
||
|
|