From 3ca9400722e91dd6b918b4c1da2c562e87244b90 Mon Sep 17 00:00:00 2001 From: Student User Date: Tue, 23 May 2023 05:36:46 -0400 Subject: [PATCH] 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"