What is the difference between the ARG and ENV instructions in a Dockerfile?
-
A
ARG persists in the final image; ENV is only available at build time
-
B
ARG is only available during the build process; ENV persists in the final image and running containers
-
C
ARG and ENV are interchangeable at both build time and runtime
-
D
ARG sets system-level variables; ENV sets application-level variables