From 01df9f1abba4aea07c3934c4c075b1e91799cc13 Mon Sep 17 00:00:00 2001
From: Christian Winther <jippignu@gmail.com>
Date: Fri, 29 Dec 2023 11:15:10 +0100
Subject: [PATCH] install "wget" in streaming Dockerfile (#28497)

---
 streaming/Dockerfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/streaming/Dockerfile b/streaming/Dockerfile
index 6e0a84771c..241009fe89 100644
--- a/streaming/Dockerfile
+++ b/streaming/Dockerfile
@@ -69,6 +69,7 @@ RUN \
     ca-certificates \
     curl \
     tzdata \
+    wget \
   ;
 
 # Set /opt/mastodon as working directory
@@ -101,4 +102,4 @@ USER mastodon
 # Expose default Streaming ports
 EXPOSE 4000
 # Run streaming when started
-CMD [ node ./streaming/index.js ]
\ No newline at end of file
+CMD [ node ./streaming/index.js ]