Describe the process of containerizing an application
Answer
- Write a Containerfile/Dockerfile that includes your app (including the commands to run it) and its dependencies
- Build the image using the Containerfile/Dockefile you wrote
- You might want to push the image to a registry
- Run the container using the image you've built