From dff3ba5397583aaf06a98c4a774a7675e3089005 Mon Sep 17 00:00:00 2001 From: ajnart Date: Thu, 26 Oct 2023 13:13:25 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Add=20`wget`=20to=20docker=20ima?= =?UTF-8?q?ge=20for=20healthcheck?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 579789718..8b54ff506 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN mkdir database COPY ./src/migrate.ts ./src/migrate.ts # Install dependencies -RUN apt-get update -y && apt-get install -y openssl +RUN apt-get update -y && apt-get install -y openssl wget # Required for migration RUN mv node_modules _node_modules