Containerizing an App: Key Commands
Get a brief summary of the commands for containerizing an application covered in this chapter.
We'll cover the following...
Summary of commands for containerizing an app
-
docker build
containerizes applications. It reads a Dockerfile and follows the instructions to create an OCI image. The-t
flag tags the image, and the-f
flag lets us specify the name and location of the Dockerfile. The build ...