alpine 制作指定 python 版本镜像, hub.docker.com 有现成(不香么? )不用重复造轮子
[root@k8s ~]# cat Dockerfile From python:3.6.5-alpine RUN pip3 install django==2.1.8 CMD ["tail","-f","/etc/hosts"]
Last updated 2 years ago