一、docker ENV vs RUN export
export won't persist across images. (Don't forget that each Dockerfile directive will generate an intermediate container, committed into an intermediate image: that image won't preserve the exported value.
The environment variables set using ENV will persist when a container is run from the resulting image.
网友评论