0
点赞
收藏
分享

微信扫一扫

ubuntu基础镜像安装pip

小暴龙要抱抱 2022-01-13 阅读 84
FROM osgeo/gdal:ubuntu-small-3.3.2

RUN apt-get install -y python3-distutils --no-install-recommends && \ 
	curl https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py && \
	python /tmp/get-pip.py && \
	rm -f /tmp/get-pip.py

对比使用apt安装可少一些依赖

举报

相关推荐

0 条评论