From 53e6ed36b601b5e9f173537a39c896960a94b0bf Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 23 Jan 2019 09:48:17 +1300 Subject: [PATCH] docker: add wget to dependencies The upstream version checking used by the RRS needs wget to fetch http/https URLs, so add it into the container. Signed-off-by: Paul Eggleton --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 964a1ad..21445d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,7 @@ RUN apt-get update \ locales \ netcat-openbsd \ curl \ + wget \ git-core \ vim \ && echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \