From c58953398aa54ab38b8beb3ae9fe7395e73f0306 Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 15 Sep 2023 17:41:34 +0200 Subject: [PATCH] Install curl within base image to be able to perform more advanced healthchecks Alternative would be to use a less responsive python script using requests as a healthcheck (requests already installed in the image) Signed-off-by: Raphael --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 45e304c4..6d147d2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -158,6 +158,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins libssl-dev \ ca-certificates \ make \ + curl \ && rm -rf /var/lib/apt/lists/* # Copy conda with PyTorch installed