From 16fb39cffc0a959220e376817672f010da87c995 Mon Sep 17 00:00:00 2001
From: mohemohe <mohemohe@users.noreply.github.com>
Date: Mon, 25 Feb 2019 12:06:24 +0900
Subject: [PATCH] Fix fail health check due to missing wget (#10110)

---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index aaad870ddb7..1263efc9347 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -78,7 +78,7 @@ RUN apt update && \
 	echo "Etc/UTC" > /etc/localtime && \
 	ln -s /opt/jemalloc/lib/* /usr/lib/ && \
 	apt -y dist-upgrade && \
-	apt install -y whois && \
+	apt install -y whois wget && \
 	addgroup --gid $GID mastodon && \
 	useradd -m -u $UID -g $GID -d /opt/mastodon mastodon && \
 	echo "mastodon:`head /dev/urandom | tr -dc A-Za-z0-9 | head -c 24 | mkpasswd -s -m sha-256`" | chpasswd