安装Python 3.6.5但在Docker中安装了Python 3.6.6

时间:2018-09-27 08:42:41

标签: python docker ubuntu

我尝试安装特定版本的Python(3.6.5),它在几周前就可以使用,而今天,当我重建映像时,它给出了3.6.6。

有人也有这个问题吗?

Ubuntu(主机)版本:Ubuntu 18.04.1 LTS

Docker版本:18.06.1-ce, build e68fc7a

这是我的Dockerfile

FROM ubuntu:18.04

# ENV Variables
ENV DEBIAN_FRONTEND=noninteractive
ENV PYTHON_VERSION="3.6.5"

# Install core packages
RUN apt-get update
RUN apt-get install -y build-essential checkinstall software-properties-common llvm cmake wget git nano nasm yasm zip unzip pkg-config \
    libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev mysql-client default-libmysqlclient-dev

# Install Python 3.6.5
RUN wget https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tar.xz \
    && tar xvf Python-${PYTHON_VERSION}.tar.xz \
    && rm Python-${PYTHON_VERSION}.tar.xz \
    && cd Python-${PYTHON_VERSION} \
    && ./configure \
    && make altinstall \
    && cd / \
    && rm -rf Python-${PYTHON_VERSION}

1 个答案:

答案 0 :(得分:3)

您的apt-get命令以静默方式安装Python 3.6.6,因为其中一个程序依赖于python,请参阅日志:

The following NEW packages will be installed:                                                          
...
pkg-config powermgmt-base publicsuffix python-apt-common python3 python3-apt
python3-dbus python3-gi python3-minimal python3-software-properties
python3.6 python3.6-minimal readline-common shared-mime-info
...

Ubuntu软件包中可能已从Python 3.6.5更新到3.6.6,这是有可能的,因为特定的Ubuntu版本中允许补丁版本更新(您可以在运行apt-get update和{之后检查主机上的更新{1}},因为我可以在Ubuntu 18.04 Python升级中看到它)