From 6e3e9b28ddc8081c13a1c6357e3a77f02980235a Mon Sep 17 00:00:00 2001 From: Sander Bruens Date: Fri, 30 Aug 2024 16:41:36 -0400 Subject: [PATCH] Fix typos in documentation. --- content/build/building/variables.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/build/building/variables.md b/content/build/building/variables.md index 87ab85f9fe..dde685e7e5 100644 --- a/content/build/building/variables.md +++ b/content/build/building/variables.md @@ -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. 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. ### Build arguments 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. Build arguments have no effect on the build unless it's used in an instruction.