From f5ff6738a16d71e8bee6cc80bb61e5641966bff4 Mon Sep 17 00:00:00 2001 From: Yash Kapadia Date: Wed, 16 Jan 2019 22:20:25 -0500 Subject: [PATCH] Removed quotation marks and fixed grammar (#28004) --- guide/english/docker/docker-build/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/docker/docker-build/index.md b/guide/english/docker/docker-build/index.md index b92fdb7e80..4cb245fcb6 100644 --- a/guide/english/docker/docker-build/index.md +++ b/guide/english/docker/docker-build/index.md @@ -4,11 +4,11 @@ title: Docker build ## Docker build -`docker build` created a docker image from a Dockerfile and a "context". A context can be a URL or a local PATH. You can name the image using the optional `-t` tag. +`docker build` creates a docker image from a Dockerfile and context. A context can be a URL or a local PATH. You can name the image using the optional `-t` tag. A Dockerfile will install dependencies during the build command, from a specified URL or local PATH. Any dependencies necessary in your containers must be specified in the Dockerfile. -Your image is now stored in your machine’s local Docker image registry. +Your image is now stored in your machine's local Docker image registry. When you have Docker containers built, you can then run your app using the appropriate run commands.