2
无法在Docker中找到软件包libc6-dbg:i386
我正在尝试在基于Ubuntu的docker容器中安装libc6-dbg:i386,因为Valgrind需要它,但我不能。 鉴于以下Dockerfile: FROM ubuntu:14.04 MAINTAINER Me <xyz@example.com> RUN apt-get update RUN apt-get install libc6-dbg RUN apt-get install libc6-dbg:i386 在Ubuntu 14.04桌面64位主机上运行: sudo docker build . 我得到: Step 0 : FROM ubuntu:14.04 ---> 5506de2b643b Step 1 : MAINTAINER Me <xyz@example.com> ---> Using cache ---> b1792911b80d Step 2 : RUN apt-get update ---> …