mirror of https://github.com/docker/docs.git
Fix typos in documentation.
This commit is contained in:
parent
22306d3bdc
commit
6e3e9b28dd
|
|
@ -24,13 +24,13 @@ You can use them to parameterize the build, allowing for more flexible and confi
|
||||||
|
|
||||||
Build arguments and environment variables are similar.
|
Build arguments and environment variables are similar.
|
||||||
They're both declared in the Dockerfile and can be set using flags for the `docker build` command.
|
They're both declared in the Dockerfile and can be set using flags for the `docker build` command.
|
||||||
Both can be used to parametrize the build.
|
Both can be used to parameterize the build.
|
||||||
But they each serve a distinct purpose.
|
But they each serve a distinct purpose.
|
||||||
|
|
||||||
### Build arguments
|
### Build arguments
|
||||||
|
|
||||||
Build arguments are variables for the Dockerfile itself.
|
Build arguments are variables for the Dockerfile itself.
|
||||||
Use them to parametrize values of Dockerfile instructions.
|
Use them to parameterize values of Dockerfile instructions.
|
||||||
For example, you might use a build argument to specify the version of a dependency to install.
|
For example, you might use a build argument to specify the version of a dependency to install.
|
||||||
|
|
||||||
Build arguments have no effect on the build unless it's used in an instruction.
|
Build arguments have no effect on the build unless it's used in an instruction.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue