From 1531755756a9afb84db840d9b929b426a37ca0fb Mon Sep 17 00:00:00 2001 From: alexandertuna Date: Mon, 27 Jan 2025 18:23:54 -0800 Subject: [PATCH] Update multi-stage-builds.md to remove forced linebreak --- .../docker-concepts/building-images/multi-stage-builds.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/content/get-started/docker-concepts/building-images/multi-stage-builds.md b/content/get-started/docker-concepts/building-images/multi-stage-builds.md index 0de903ee2067..c6336879c21d 100644 --- a/content/get-started/docker-concepts/building-images/multi-stage-builds.md +++ b/content/get-started/docker-concepts/building-images/multi-stage-builds.md @@ -325,9 +325,7 @@ Now that you have the project, you’re ready to create the `Dockerfile`. Your final image is just 428 MB, compared to the original build size of 880 MB. - By optimizing each stage and only including what's necessary, you were able to significantly reduce the - overall image size while still achieving the same functionality. This not only improves performance but - also makes your Docker images more lightweight, more secure, and easier to manage. + By optimizing each stage and only including what's necessary, you were able to significantly reduce the overall image size while still achieving the same functionality. This not only improves performance but also makes your Docker images more lightweight, more secure, and easier to manage. ## Additional resources