From ee59422b2d859fdb014d8c28ced0fefea593a84d Mon Sep 17 00:00:00 2001 From: alexandertuna Date: Tue, 28 Jan 2025 15:41:06 -0800 Subject: [PATCH] Update multi-stage-builds.md to remove forced linebreak (#21907) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description I removed linebreaks in multi-stage-builds.md. These linebreaks rendered awkwardly in my browser and aren't used in other areas of the page. Firefox screenshot: Screenshot 2025-01-27 at 6 27 28 PM ## Reviews - [ ] Technical review - [ ] Editorial review - [ ] Product review --- .../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 0de903ee20..c6336879c2 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