From: decentral1se Date: Thu, 6 May 2021 11:14:05 +0000 (+0200) Subject: Add curl as dependency to allow for healthchecks X-Git-Tag: v3.2.0-rc.1~42 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=aa7d2da45b478ea834f5484964e5c826d3cc7635;hp=a66c2e3252d6cca8958959966f42494ded564023;p=github%2FChocobozzz%2FPeerTube.git Add curl as dependency to allow for healthchecks Closes https://github.com/Chocobozzz/PeerTube/issues/4045. --- diff --git a/support/docker/production/Dockerfile.buster b/support/docker/production/Dockerfile.buster index b3822964d..2ff0591f9 100644 --- a/support/docker/production/Dockerfile.buster +++ b/support/docker/production/Dockerfile.buster @@ -7,7 +7,7 @@ ARG NPM_RUN_BUILD_OPTS # Install dependencies RUN apt update \ - && apt install -y --no-install-recommends openssl ffmpeg python ca-certificates gnupg gosu build-essential \ + && apt install -y --no-install-recommends openssl ffmpeg python ca-certificates gnupg gosu build-essential curl \ && gosu nobody true \ && rm /var/lib/apt/lists/* -fR