From 1baa654a54b63012ff6e10f8271c873bea668028 Mon Sep 17 00:00:00 2001 From: TheFrenchGhosty Date: Tue, 8 Feb 2022 18:52:25 +0100 Subject: [PATCH] Add wget to the Docker so that the healthcheck works --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 36903b2..6673b9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:14.17-slim # Video support dependency -RUN apt-get update && apt-get install -y ffmpeg +RUN apt-get update && apt-get install -y ffmpeg wget # Install NPM dependencies and copy the project WORKDIR /teddit