with `export` the env var will only be available d...
# docker
c
with
export
the env var will only be available during the build process of the intermediate container that is created while building, it does not persist and will not be available when you run a container from that image. With
ENV
it will persist. See https://stackoverflow.com/questions/33379393/docker-env-vs-run-export