From cd6dcd8cb54ce41e7be9f460a3b6a4c7f2b561be Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 26 Aug 2014 00:41:41 -0700 Subject: [PATCH] dashboard/env: fix 32-bit builds (Fix from adg) LGTM=adg R=adg CC=golang-codereviews https://golang.org/cl/136760043 --- dashboard/env/linux-x86-base/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dashboard/env/linux-x86-base/Dockerfile b/dashboard/env/linux-x86-base/Dockerfile index e1db702b..711eed50 100644 --- a/dashboard/env/linux-x86-base/Dockerfile +++ b/dashboard/env/linux-x86-base/Dockerfile @@ -20,7 +20,8 @@ RUN apt-get install -y --no-install-recommends strace RUN apt-get install -y --no-install-recommends gcc libc6-dev # For 32-bit builds: -RUN apt-get install -y --no-install-recommends libc6-dev-i386 +# TODO(bradfitz): move these into a 386 image that derives from this one. +RUN apt-get install -y --no-install-recommends libc6-dev-i386 gcc-multilib # For interacting with the Go source & subrepos: RUN apt-get install -y --no-install-recommends mercurial git-core subversion