在i386/debian Docker映像上安装libboost all dev时未满足的依赖项

在i386/debian Docker映像上安装libboost all dev时未满足的依赖项,docker,ubuntu,debian,apt,Docker,Ubuntu,Debian,Apt,我想对Linux i386目标的构建环境进行dockerize。我需要安装库依赖项,如boost。但我遇到了这个错误: Dockerfile FROM i386/debian:sid RUN apt-get update RUN apt-get -y install libboost1.67-all-dev 但即使是这个简单的脚本也失败了: The following packages have unmet dependencies: libboost1.67-all-dev : Depen

我想对Linux i386目标的构建环境进行dockerize。我需要安装库依赖项,如boost。但我遇到了这个错误:

Dockerfile

FROM i386/debian:sid
RUN apt-get update
RUN apt-get -y install libboost1.67-all-dev
但即使是这个简单的脚本也失败了:

The following packages have unmet dependencies:
 libboost1.67-all-dev : Depends: libboost-mpi1.67-dev but it is not going to be installed
                        Depends: libboost-mpi-python1.67-dev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

我改为
libboost1.67-dev
,它成功了。我不知道有什么区别。如果有人知道,请向我解释