码迷,mamicode.com
首页 > 其他好文 > 详细

创建 Dockerfile

时间:2019-06-01 19:33:21      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:python3   python   col   uil   文件   dock   images   div   简单的   

1,创建一个简单的hello workd文件

 1 midke /root/hello-world
 2 cd /root/hello-world
 3 
 4 写一个helloworld脚本
 5 vim hello-world.py
 6 #!/usr/bin/env python
 7 print("hello world \n")
 8 
 9 vim Dockerfile
10 FROM python
11 ADD hello-world.py /
12 CMD ["python3","hello-world.py"]
13 
14 生成images
15 docker build -t python-obj/hello-world .
16 
17 查看生成的images
18 docker image ls
19 
20 运行images
21 docker run python-obj/hello-world 

 

创建 Dockerfile

标签:python3   python   col   uil   文件   dock   images   div   简单的   

原文地址:https://www.cnblogs.com/YingLai/p/10960451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!