From 1d808ca81afa1bf65ec66dcafa2fe88b759cbfaa Mon Sep 17 00:00:00 2001 From: haneul Yeom Date: Tue, 2 Sep 2025 15:27:06 +0900 Subject: [PATCH 1/2] chore / fix dockerfile legacy format --- chapters/ch03/python-app/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chapters/ch03/python-app/Dockerfile b/chapters/ch03/python-app/Dockerfile index 5778318..c0448e2 100644 --- a/chapters/ch03/python-app/Dockerfile +++ b/chapters/ch03/python-app/Dockerfile @@ -1,5 +1,6 @@ FROM registry.access.redhat.com/ubi8/python-39 -ENV PORT 8080 +ENV PORT=8080 +# ENV PORT 8080 LegacyKeyValueFormat EXPOSE 8080 WORKDIR /usr/src/app From 24c0c5ae635dd266c4837953863680795478c27d Mon Sep 17 00:00:00 2001 From: haneul Yeom Date: Tue, 2 Sep 2025 15:43:27 +0900 Subject: [PATCH 2/2] chore / fix legacy key value format --- chapters/ch03/python-app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/ch03/python-app/Dockerfile b/chapters/ch03/python-app/Dockerfile index c0448e2..83dbe82 100644 --- a/chapters/ch03/python-app/Dockerfile +++ b/chapters/ch03/python-app/Dockerfile @@ -1,6 +1,6 @@ FROM registry.access.redhat.com/ubi8/python-39 ENV PORT=8080 -# ENV PORT 8080 LegacyKeyValueFormat +# ENV PORT 8080 EXPOSE 8080 WORKDIR /usr/src/app