From f2c38e1e9e56d73127d5961c1a66eefa9a84d1e2 Mon Sep 17 00:00:00 2001 From: ocp4 Date: Sun, 28 Apr 2024 22:59:27 +0100 Subject: [PATCH 1/2] Add a counter --- ubi-echo/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubi-echo/Dockerfile b/ubi-echo/Dockerfile index 176078e5f5..0b28fb3c8b 100644 --- a/ubi-echo/Dockerfile +++ b/ubi-echo/Dockerfile @@ -1,3 +1,3 @@ FROM registry.access.redhat.com/ubi8/ubi:8.0 USER 1001 -CMD bash -c "while true; do echo test; sleep 5; done" +CMD bash -c "while true; do (( i++ )); echo test \$i; sleep 5; done" From a4b19727b7ac50424dd7d40793a77638a87dd905 Mon Sep 17 00:00:00 2001 From: ocp4 Date: Sat, 4 May 2024 22:23:49 +0100 Subject: [PATCH 2/2] new release 5 may 2024 --- php-hello-dockerfile/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/php-hello-dockerfile/index.php b/php-hello-dockerfile/index.php index e04de639ff..dbf4d69ead 100644 --- a/php-hello-dockerfile/index.php +++ b/php-hello-dockerfile/index.php @@ -1,3 +1,4 @@