dockerfile之命令总结
2020-11-18 本文已影响0人
程序员小白成长记
一、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.