From 9b8bdf3726ccba20f0f2ca51006736b8c012302b Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 13 Mar 2024 10:40:02 +0100 Subject: [PATCH] Update Dockerfile --- dockerfile/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile/Dockerfile b/dockerfile/Dockerfile index 1fbeb6b..f676231 100644 --- a/dockerfile/Dockerfile +++ b/dockerfile/Dockerfile @@ -1,3 +1,3 @@ FROM nginx:alpine RUN echo "Hello, World!" > /usr/share/nginx/html/index.html -HEALTHCHECK --interval=5s --timeout=3s --start-period=5s --retries=3 CMD "wget -qO- http://localhost:80 || exit 1" +HEALTHCHECK --interval=5s --timeout=3s --start-period=5s --retries=3 CMD wget -qO- http://localhost:80 || exit 1