From d76c7df4647cdc3da2543952fbf74d2f30ae5473 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 5 Sep 2025 15:12:57 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dockerfile/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile/Dockerfile b/dockerfile/Dockerfile index 9030c94..f34b8cd 100644 --- a/dockerfile/Dockerfile +++ b/dockerfile/Dockerfile @@ -2,7 +2,7 @@ FROM nginx:alpine as base 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 +RUN echo "Hello, World PR!" > /usr/share/nginx/html/index.html 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