What must the Docker build include so the Meraki location consumer is a self-contained containerized application?
Select an answer to reveal the explanation.
Short Explanation
Pack the lunch and the utensils in the same box—source plus locked requirements inside the image. Counting on whatever happened to be on one laptop is not containerized.
Full Explanation
A proper Docker build copies the application source or built artifact and installs the locked requirements inside the image. Relying on packages that happen to be on a developer laptop, bind-mounting a personal site-packages tree, or installing after the fact on each pod leaves an incomplete, non-portable containerized app. Declared dependencies belong in the image.