10330144bb
The last commit introduced a broken version reference due to a missing v in front for the version. This patch repairs this issue as well as providing a full repository reference in order to make sure no override from other repositories happens.
15 lines
479 B
Docker
15 lines
479 B
Docker
FROM docker.io/gitlab/gitlab-runner:v13.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 python3-influxdb \
|
|
&& apt-get clean && apt-get purge && rm -r /var/lib/apt/lists/* \
|
|
&& true
|