From 205e8093c243c8cf067a6e3f77339988c509f3e8 Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Thu, 5 Sep 2024 10:24:01 +0200 Subject: [PATCH] fix LegacyKeyValueFormat warnings > LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" > LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" --- create_dockerfile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/create_dockerfile.sh b/create_dockerfile.sh index 0f183f8..eb01f91 100755 --- a/create_dockerfile.sh +++ b/create_dockerfile.sh @@ -41,13 +41,13 @@ create_dockerfile() { cat >"${DOCKERFILE}" < +LABEL org.opencontainers.image.authors="Victor Seva " # Important! Update this no-op ENV variable when this Dockerfile # is updated with the current date. It will force refresh of all # of the base images and things like 'apt-get update' won't be using # old cached versions when the Dockerfile is built. -ENV REFRESHED_AT ${DATE} +ENV REFRESHED_AT=${DATE} EOF if ${archived} ; then