From 5bc9d3f01d811ebd2af8aec0323dd246395e5a0f Mon Sep 17 00:00:00 2001 From: aoshfan <42878756+aoshfan@users.noreply.github.com> Date: Mon, 8 Jul 2024 00:59:13 +0800 Subject: [PATCH] Update "ENV key value" format in README at the moment it using legacy forward and prompt a warning to change to recommended format, Fixing this will not prompt a warning. Reference: https://docs.docker.com/reference/build-checks/legacy-key-value-format/ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9caf8aa..d309850 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ In Docker, you will want to use an entrypoint so you don't have to remember to manually invoke Tini: # Add Tini - ENV TINI_VERSION v0.19.0 + ENV TINI_VERSION=v0.19.0 ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini RUN chmod +x /tini ENTRYPOINT ["/tini", "--"]