From 4b5b4aa6e99e2cfb7d4ae7f9b7c0cd8b2ebad5cd Mon Sep 17 00:00:00 2001 From: Derek Vanderveer <36741255+dvanderveer@users.noreply.github.com> Date: Mon, 9 Oct 2023 13:06:14 -0400 Subject: [PATCH] Add curl to the container for healthcheck purposes (#89) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9b9ab73..a450b6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN go build -v -o mlmym FROM debian:bullseye-slim WORKDIR /app RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ - ca-certificates && \ + ca-certificates curl && \ rm -rf /var/lib/apt/lists/* COPY --from=builder /app/mlmym /app/mlmym COPY --from=builder /app/templates /app/templates