From 23bb54e952c3d9ec2eb9283f2f5dff009adb7b45 Mon Sep 17 00:00:00 2001 From: David Xia Date: Wed, 18 Sep 2024 14:18:06 -0400 Subject: [PATCH] fix docs: subject-verb agreement in best-practices.md --- content/manuals/build/building/best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/build/building/best-practices.md b/content/manuals/build/building/best-practices.md index ef6c37960f..cd229652db 100644 --- a/content/manuals/build/building/best-practices.md +++ b/content/manuals/build/building/best-practices.md @@ -21,7 +21,7 @@ aliases: Multi-stage builds let you reduce the size of your final image, by creating a cleaner separation between the building of your image and the final output. Split your Dockerfile instructions into distinct stages to make sure that the -resulting output only contains the files that's needed to run the application. +resulting output only contains the files that are needed to run the application. Using multiple stages can also let you build more efficiently by executing build steps in parallel.