From 1c9486d9279315b882919f2f30359fb8b923c206 Mon Sep 17 00:00:00 2001 From: Dwight Biddle <47675906+dwightbiddle-ef@users.noreply.github.com> Date: Fri, 24 Apr 2020 15:00:24 -0400 Subject: [PATCH] Add ping to apt-get command When an upgrade of the self-hosted runner runs, it tries to ping and spams the logs with errors. It works, this is just cleaning up the output (and potentially fixing a future bug if some necessary code is failing due to this) --- debian-buster/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian-buster/Dockerfile b/debian-buster/Dockerfile index d382beb29..e96f7f0a1 100644 --- a/debian-buster/Dockerfile +++ b/debian-buster/Dockerfile @@ -32,7 +32,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ git \ sudo \ supervisor \ - jq + jq \ + iputils-ping COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf RUN chmod 644 /etc/supervisor/conf.d/supervisord.conf