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

17 lines
525 B
Text
Raw Normal View History

FROM docker.io/gitlab/gitlab-runner:v15.6.1
2019-01-30 00:35:16 +01:00
RUN true \
&& apt-get update \
2019-01-30 00:47:01 +01:00
&& apt-get upgrade -y \
&& apt-get clean && apt-get purge && rm -r /var/lib/apt/lists/* \
2019-01-30 00:35:16 +01:00
&& true
RUN true \
&& apt-get update \
&& apt-get install -y gpg software-properties-common \
&& add-apt-repository ppa:ansible/ansible \
&& apt-get update \
&& apt-get install -y ansible python3-requests python3-influxdb python3-netaddr \
2019-01-30 00:47:01 +01:00
&& apt-get clean && apt-get purge && rm -r /var/lib/apt/lists/* \
2019-01-30 00:35:16 +01:00
&& true