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 df103f9387
Add influxdb dependency
This patch adds the influxdb library as dependency the gitlab runner
which will allow the mangement of influxdb setups using the new
monitoring module from the infrastructure repository.[1]

[1]: 9ae68023f1/roles/monitoring
2020-07-05 23:13:10 +02:00

15 lines
468 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 python3-influxdb \
&& apt-get clean && apt-get purge && rm -r /var/lib/apt/lists/* \
&& true