Remove outdated sentence

The output following the sentence no longer contains what the sentence
claims.
This commit is contained in:
Stan Manilov 2021-09-16 22:18:45 +03:00
parent 3e27e1bb75
commit 3e5032813f
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ python-docker
Now that weve created our Dockerfile, lets 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 builds 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`. Well 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`. Well 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.
Lets build our first Docker image.