From 57639274cd8649b19dce0d07baf82d82734870e3 Mon Sep 17 00:00:00 2001 From: Usha Mandya <47779042+usha-mandya@users.noreply.github.com> Date: Wed, 17 Nov 2021 14:33:01 +0000 Subject: [PATCH] Update build-images.md --- language/java/build-images.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/language/java/build-images.md b/language/java/build-images.md index 7e394e34db..d65e7ce3c0 100644 --- a/language/java/build-images.md +++ b/language/java/build-images.md @@ -159,7 +159,8 @@ To increase the performance of the build, and as a general best practice, we rec target ``` -This line excludes the `target` directory, which contains output from Maven, from the Docker build context. The build context is what Docker commands like `RUN` refer to and it has to be created for every build, by packaging up any files not excluded by `.dockerignore`. There are many good reasons to carefully structure a `.dockerignore` file, but this one-line file is good enough for now. +This line excludes the `target` directory, which contains output from Maven, from the Docker build context. +There are many good reasons to carefully structure a `.dockerignore` file, but this one-line file is good enough for now. ## Build an image