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>
This commit is contained in:
Vrushabh 2024-03-01 18:10:46 +05:30 committed by GitHub
parent 052b64161f
commit c042ba9dd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 3 deletions

View File

@ -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