14 lines
338 B
Docker
14 lines
338 B
Docker
FROM gitlab/gitlab-runner:latest
|
|
|
|
RUN true \
|
|
&& apt-get update \
|
|
&& apt-get upgrade \
|
|
&& apt-get install sudo \
|
|
&& true
|
|
|
|
RUN true \
|
|
&& apt-get update \
|
|
&& apt-get install -y software-properties-common \
|
|
&& apt-add-repository --yes --update ppa:ansible/ansible \
|
|
&& apt-get install -y ansible \
|
|
&& true
|