美文网首页
dockerfile之命令总结

dockerfile之命令总结

作者: 程序员小白成长记 | 来源:发表于2020-11-18 17:17 被阅读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.

docker ENV vs RUN export

相关文章

网友评论

      本文标题:dockerfile之命令总结

      本文链接:https://www.haomeiwen.com/subject/htgciktx.html