mirror of https://github.com/docker/docs.git
Remove outdated sentence
The output following the sentence no longer contains what the sentence claims.
This commit is contained in:
parent
3e27e1bb75
commit
3e5032813f
|
@ -145,7 +145,7 @@ python-docker
|
|||
|
||||
Now that we’ve created our Dockerfile, let’s build our image. To do this, we use the `docker build` command. The `docker build` command builds Docker images from a Dockerfile and a “context”. A build’s context is the set of files located in the specified PATH or URL. The Docker build process can access any of the files located in this context.
|
||||
|
||||
The build command optionally takes a `--tag` flag. The tag is used to set the name of the image and an optional tag in the format `name:tag`. We’ll leave off the optional `tag` for now to help simplify things. If you do not pass a tag, Docker uses “latest” as its default tag. You can see this in the last line of the build output.
|
||||
The build command optionally takes a `--tag` flag. The tag is used to set the name of the image and an optional tag in the format `name:tag`. We’ll leave off the optional `tag` for now to help simplify things. If you do not pass a tag, Docker uses “latest” as its default tag.
|
||||
|
||||
Let’s build our first Docker image.
|
||||
|
||||
|
|
Loading…
Reference in New Issue