Merge pull request #20931 from davidxia/patch-1

fix docs: subject-verb agreement in best-practices.md
This commit is contained in:
David Karlsson 2024-09-18 20:37:43 +02:00 committed by GitHub
commit 3753bb9498
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ aliases:
Multi-stage builds let you reduce the size of your final image, by creating a
cleaner separation between the building of your image and the final output.
Split your Dockerfile instructions into distinct stages to make sure that the
resulting output only contains the files that's needed to run the application.
resulting output only contains the files that are needed to run the application.
Using multiple stages can also let you build more efficiently by executing
build steps in parallel.