3f92097466
This patch will upgrade to the newer gitlab-ci build process using podman.
15 lines
451 B
Docker
15 lines
451 B
Docker
FROM gitlab/gitlab-runner:13.1.1
|
|
|
|
RUN true \
|
|
&& apt-get update \
|
|
&& apt-get upgrade -y \
|
|
&& apt-get clean && apt-get purge && rm -r /var/lib/apt/lists/* \
|
|
&& 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 \
|
|
&& apt-get clean && apt-get purge && rm -r /var/lib/apt/lists/* \
|
|
&& true
|