From 76e53fbd4d3eeda4d37a9a7446a97106f554f83f Mon Sep 17 00:00:00 2001 From: Maria Bermudez Date: Thu, 27 Dec 2018 16:04:25 -0800 Subject: [PATCH] Relates to PR 7688 --- get-started/part2.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/get-started/part2.md b/get-started/part2.md index b85e7c74e2..e3457475ce 100644 --- a/get-started/part2.md +++ b/get-started/part2.md @@ -154,8 +154,7 @@ $ ls Dockerfile app.py requirements.txt ``` -Now run the build command. This creates a Docker image, which we're going to -tag using `-t` so it has a friendly name. +Now run the build command with the optional `-t` flag to [tag your image with a friendly name](/engine/reference/commandline/build/#tag-an-image--t), and `.` to [set your build context](/engine/reference/commandline/build/#build-with-path). ```shell docker build -t friendlyhello .