docker 2--dockerfile
Posted infaaf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker 2--dockerfile相关的知识,希望对你有一定的参考价值。
编写dockerfile
Dockerfile内容
1个run为1层文件层,注意清理不必要的安装包。
From nginx RUN echo ‘hello123‘ > /usr/share/nginx/html/index.html && echo ‘123‘ #&& apt-get install -y $buildDeps #&& apt-get purge -y --auto-remove $buildDeps
创建image
docker build -t nginx:v3 .
以上是关于docker 2--dockerfile的主要内容,如果未能解决你的问题,请参考以下文章