mirror of https://github.com/docker/docs.git
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:
parent
052b64161f
commit
c042ba9dd1
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue