mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Split apt-get example onto multiple lines. Use extra spaces to align the code block.
Signed-off-by: Charles Chan <charleswhchan@users.noreply.github.com>
This commit is contained in:
parent
b58565e9d6
commit
c4d2b34d13
1 changed files with 4 additions and 1 deletions
|
@ -154,7 +154,10 @@ updated, use `apt-get install -y foo` and it will update automatically.
|
|||
|
||||
* Do write instructions like:
|
||||
|
||||
RUN apt-get update && apt-get install -y package-bar package-foo package-baz
|
||||
RUN apt-get update && apt-get install -y \
|
||||
package-bar \
|
||||
package-baz \
|
||||
package-foo
|
||||
|
||||
Writing the instruction this way not only makes it easier to read
|
||||
and maintain, but also, by including `apt-get update`, ensures that the cache
|
||||
|
|
Loading…
Add table
Reference in a new issue