about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authormohemohe <mohemohe@users.noreply.github.com>2019-02-25 12:06:24 +0900
committerEugen Rochko <eugen@zeonfederated.com>2019-02-25 04:06:24 +0100
commit16fb39cffc0a959220e376817672f010da87c995 (patch)
treea9009bce92a145b7298a34da933c16ac8a9e0979 /Dockerfile
parent3a44827d3f69fedb9a41f9c8fb3b763deec6f723 (diff)
Fix fail health check due to missing wget (#10110)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index aaad870dd..1263efc93 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