From b2a86c7ba4e783d540b4b78fd4fcaeff29118459 Mon Sep 17 00:00:00 2001 From: Thomas Makin Date: Thu, 28 Sep 2023 13:28:34 -0400 Subject: [PATCH] docker: fixup healthcheck --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f08cbe8..25002ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ EXPOSE 3001 RUN apt update RUN apt install -y curl -HEALTHCHECK --interval=5s --timeout=30s --start-period=5s --retries=3 CMD [ "curl http://localhost/" ] +HEALTHCHECK --interval=5s --timeout=30s --start-period=5s --retries=3 CMD [ "curl", "http://localhost:3001" ] WORKDIR /sauce-app