From c3d2d0f2b883961617de1155c0b883007341b867 Mon Sep 17 00:00:00 2001 From: Quentin Duchemin <quentinduchemin@tuta.io> Date: Tue, 9 Jun 2020 23:01:27 +0200 Subject: [PATCH] [PicaPlume] Add curl for HEALTHCHECK --- pica-plume/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pica-plume/Dockerfile b/pica-plume/Dockerfile index 11a4c3b0..0f0246a3 100644 --- a/pica-plume/Dockerfile +++ b/pica-plume/Dockerfile @@ -13,10 +13,11 @@ RUN apt-get update && \ # See https://github.com/dalibo/temboard/issues/211#issuecomment-342205157 to understand why mkdir -p /usr/share/man/man1 && \ mkdir -p /usr/share/man/man7 && \ - apt-get install -y postgresql-client && \ + apt-get install -y postgresql-client curl && \ rm -rf /var/lib/apt/lists/* COPY ./entrypoint.sh /entrypoint.sh HEALTHCHECK --interval=20s --timeout=3s CMD curl --fail http://localhost:7878 || exit 1 ENTRYPOINT ["/entrypoint.sh"] +CMD plume -- GitLab