Difficulty: Intermediate
What is the difference between ARG and ENV?
`ARG` is only available during the build process and is not available in the running container. `ENV` is available both during build and at runtime inside the container.
ARG, ENV, Build Time, Runtime