标签: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
标签:default ubuntu python update
原文地址:http://wushang.blog.51cto.com/10078847/1792740