ARG vs. ENV

Difficulty: Intermediate

Question

What is the difference between ARG and ENV?

Answer

`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.

Concepts covered

ARG, ENV, Build Time, Runtime