美文网首页
DockerFile 书写

DockerFile 书写

作者: 流雨声 | 来源:发表于2018-04-11 18:37 被阅读0次

    1  mkdir docker_demo

    2  cd docker_demo/

    3  touch Dockerfile

    4 vi Dockerfile #写入下面的数据

    FROM ubuntu

    RUN apt-get update && apt-get install -y vim

    COPY testfile /

    5 docker build -t ubuntu-with-vi-dockerfile-2 .

    相关文章

      网友评论

          本文标题:DockerFile 书写

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