1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

install "wget" in streaming Dockerfile (#28497)

This commit is contained in:
Christian Winther 2023-12-29 11:15:10 +01:00 committed by GitHub
parent 3f0140bbdf
commit 01df9f1abb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,6 +69,7 @@ RUN \
ca-certificates \ ca-certificates \
curl \ curl \
tzdata \ tzdata \
wget \
; ;
# Set /opt/mastodon as working directory # Set /opt/mastodon as working directory
@ -101,4 +102,4 @@ USER mastodon
# Expose default Streaming ports # Expose default Streaming ports
EXPOSE 4000 EXPOSE 4000
# Run streaming when started # Run streaming when started
CMD [ node ./streaming/index.js ] CMD [ node ./streaming/index.js ]