Taking a Closer Look at the Docker Image
Examine the Dockerfile of the containerized application.
We'll cover the following...
We'll cover the following...
Now that the application is containerized, take a closer look at how some of the machinery works.
Examining the build process
The docker build command parses the Dockerfile one line at a time, starting from the top. We can insert comments by starting a line with the # character, and the builder will ignore them.
All non-comment lines are called instructions or steps and take the format <INSTRUCTION> <arguments>. Instruction names are not case-sensitive, but it’s common to write them in UPPERCASE to make them easier to ...