From c042ba9dd110acae8ac371a7d2e473271378bd70 Mon Sep 17 00:00:00 2001 From: Vrushabh Date: Fri, 1 Mar 2024 18:10:46 +0530 Subject: [PATCH] Fix : Overflowing Text in build/cache (#19547) * fix overflow * formated changes Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --------- Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- content/build/cache/_index.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/content/build/cache/_index.md b/content/build/cache/_index.md index 8791771b01..1bbdd6ddd7 100644 --- a/content/build/cache/_index.md +++ b/content/build/cache/_index.md @@ -50,9 +50,13 @@ anything differently, they still need to re-run. > **Note** > -> Suppose you have a `RUN apt-get update && apt-get upgrade -y` step in your -> Dockerfile to upgrade all the software packages in your Debian-based image to -> the latest version. +> Suppose you have a step in your Dockerfile +> to upgrade all the software packages in your +> Debian-based image to the latest version: +> +> ```dockerfile +> RUN apt-get update && apt-get upgrade -y +> ``` > > This doesn't mean that the images you build are always up to date. Rebuilding > the image on the same host one week later will still get you the same packages