📜  E: 无法定位包 python3-pip docker 文件 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:10.147000             🧑  作者: Mango

代码示例1
....

# use this for ubuntu 14.04 or 16.04
RUN apt-get update -y && apt-get install -y software-properties-common && add-apt-repository ppa:deadsnakes/ppa

RUN apt-get update -y && apt-get install -y \
 python3.6 \
 python3-pip \
 curl \
 git

RUN pip3 install --upgrade pip
 
...