In line 657,it should be can't instead of can

"Can" in place of "can't" is making the meaning of the paragraph confusing.In additional,it is in contrast with the example provided.
This commit is contained in:
Shivang Goswami 2019-12-24 22:33:28 +05:30 committed by GitHub
parent 7044283cc0
commit 94879d3ac2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -654,7 +654,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 be dumped. You can test this by
still persists in this layer and its value can't be dumped. You can test this by
creating a Dockerfile like the following, and then building it.
```Dockerfile