From 3961f8806fd5e2b1e5636bf4d125bf415ff741f5 Mon Sep 17 00:00:00 2001 From: kari Barry Date: Tue, 8 Oct 2024 15:36:54 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A5=8C=20Add=20cURL=20to=20dockerfile,=20?= =?UTF-8?q?available=20for=20healthchecks.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 558527c9d..c649b0c21 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,9 @@ FROM python:3.12-slim as builder # We need gcc to compile thriftpy2, a secondary dependency. RUN apt-get -y update && apt-get install -y git gcc +# We want cURL so healthchecks can be performed within the container +RUN apt-get install -y curl + WORKDIR /code # Ensure logs and error messages do not get stuck in a buffer.