From 1ecb9c26c529b258b030c5c317015e188c06f901 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Sat, 18 May 2024 18:25:35 +0200 Subject: [PATCH] Update Dockerfile --- dockerfile/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfile/Dockerfile b/dockerfile/Dockerfile index 3463ee3..9030c94 100644 --- a/dockerfile/Dockerfile +++ b/dockerfile/Dockerfile @@ -3,7 +3,8 @@ ENV DATABASE_URL=$DATABASE_URL RUN echo -e "\e[1;33mENVIRONMENT VARIABLES\e[0m" RUN env RUN echo "Hello, World!" > /usr/share/nginx/html/index.html -HEALTHCHECK --interval=5s --timeout=3s --start-period=30s --retries=3 CMD wget -qO- http://localhost:80 || exit 1 +RUN echo "Hello, World about!" > /usr/share/nginx/html/about.html +#HEALTHCHECK --interval=5s --timeout=3s --start-period=30s --retries=3 CMD wget -qO- http://localhost:80 || exit 1 FROM base AS builder RUN echo -e "\e[1;33mENVIRONMENT VARIABLES\e[0m"