Format `docker build` as a code sample (#15808)

To stay consistent with other uses in the docs, it would make sense for `docker build` to be formatted as code here.
This commit is contained in:
Daniel Schroeder 2022-10-05 08:26:31 -05:00 committed by GitHub
parent 361c88ae9f
commit add70f8a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ Work through the steps to build a Python image in [Build your Python image](buil
## Overview
In the previous module, we created our sample application and then we created a Dockerfile that we used to produce an image. We created our image using the docker command docker build. Now that we have an image, we can run that image and see if our application is running correctly.
In the previous module, we created our sample application and then we created a Dockerfile that we used to produce an image. We created our image using the docker command `docker build`. Now that we have an image, we can run that image and see if our application is running correctly.
A container is a normal operating system process except that this process is isolated in that it has its own file system, its own networking, and its own isolated process tree separate from the host.