1
0
Fork 0
This repository has been archived on 2025-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
gitlab-ansible-runner/Dockerfile
Sheogorath 10330144bb
Fix broken FROM tag
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.
2020-07-05 23:23:10 +02:00

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