From 089fd51c9a887513ba6d409d945a3a47db5c063c Mon Sep 17 00:00:00 2001 From: toonarmycaptain Date: Sun, 28 Mar 2021 23:55:54 -0500 Subject: [PATCH] Fix typo misstating step in build using cache Fixed typo - Step one doesn't say "Using cache". --- docs_en/tutorial/image-building-best-practices/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_en/tutorial/image-building-best-practices/index.md b/docs_en/tutorial/image-building-best-practices/index.md index 7861c75..46b1109 100644 --- a/docs_en/tutorial/image-building-best-practices/index.md +++ b/docs_en/tutorial/image-building-best-practices/index.md @@ -147,7 +147,7 @@ a change to the `package.json`. Make sense? Successfully tagged docker-101:latest ``` - First off, you should notice that the build was MUCH faster! And, you'll see that steps 1-4 all have + First off, you should notice that the build was MUCH faster! And, you'll see that steps 2-4 all have `Using cache`. So, hooray! We're using the build cache. Pushing and pulling this image and updates to it will be much faster as well. Hooray!