From d9a6113588a062ec492c607b44717fa2fcacb4ea Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Mon, 8 Feb 2021 22:08:20 +0100 Subject: [PATCH] Add PPA manually to build This patch manually adds the PPA for trusty since focal isn't supported at all. It should however not cause any harm. --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index fd8ee55..67ca05b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,10 @@ RUN true \ RUN true \ && apt-get update \ + && apt-get install -y gpg \ + && echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" > /etc/apt/sources.list.d/ansible.repo \ + && apt-get update \ + && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367 \ && apt-get install -y gpg ansible python3-requests python3-influxdb python3-netaddr \ && apt-get clean && apt-get purge && rm -r /var/lib/apt/lists/* \ && true