码迷,mamicode.com
首页 > 编程语言 > 详细

dockerfile-python

时间:2016-06-24 22:17:36      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:default   ubuntu   python   update   

#
# Python Dockerfile
#
# https://github.com/dockerfile/python
#

# Pull base image.
FROM ubuntu

# Install Python.
RUN   apt-get update &&   apt-get install -y python python-dev python-pip python-virtualenv &&   rm -rf /var/lib/apt/lists/*

# Define working directory.
WORKDIR /data

# Define default command.
CMD ["bash"]


本文出自 “无伤” 博客,请务必保留此出处http://wushang.blog.51cto.com/10078847/1792740

dockerfile-python

标签:default   ubuntu   python   update   

原文地址:http://wushang.blog.51cto.com/10078847/1792740

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