From 8889138246136647eaec4dd3e4c5a99ab62c9bcf Mon Sep 17 00:00:00 2001 From: Henare Degan Date: Wed, 10 Feb 2021 14:14:40 +1100 Subject: [PATCH] Fix typo in Dockerfile Best Practices ENV section The example below this change shows that the ENV value can be dumped so I think this was a typo saying that the ENV value can't be dumped. --- develop/develop-images/dockerfile_best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/develop/develop-images/dockerfile_best-practices.md b/develop/develop-images/dockerfile_best-practices.md index f049078f71..2b9cabeb3f 100644 --- a/develop/develop-images/dockerfile_best-practices.md +++ b/develop/develop-images/dockerfile_best-practices.md @@ -656,7 +656,7 @@ auto-magically bump the version of the software in your container. Each `ENV` line creates a new intermediate layer, just like `RUN` commands. This means that even if you unset the environment variable in a future layer, it -still persists in this layer and its value can't be dumped. You can test this by +still persists in this layer and its value can be dumped. You can test this by creating a Dockerfile like the following, and then building it. ```dockerfile