From fd6008421c02f29585ffda1c2ccb9e484ba0926a Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 25 Jan 2018 15:13:20 +0900 Subject: [PATCH] Bug 1433033 - Remove a few packages from the toolchain-build image. r=dustin python-dev was required to build mercurial, but the need for that was removed in bug 1429669. The others were required for mingw32 toolchains, but they are using a different docker image and will switch to another different docker image. --HG-- extra : rebase_source : b65c586a325f220c565e79afb3d3c9acc9f922bc --- taskcluster/docker/toolchain-build/Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/taskcluster/docker/toolchain-build/Dockerfile b/taskcluster/docker/toolchain-build/Dockerfile index de510a87c169..1a4466dcf955 100644 --- a/taskcluster/docker/toolchain-build/Dockerfile +++ b/taskcluster/docker/toolchain-build/Dockerfile @@ -43,8 +43,6 @@ RUN for task in $DOCKER_IMAGE_PACKAGES; do \ echo "deb [trusted=yes] https://queue.taskcluster.net/v1/task/$task/runs/0/artifacts/public/build/ debian/" >> /etc/apt/sources.list; \ done -RUN dpkg --add-architecture i386 - RUN apt-get -o Acquire::Check-Valid-Until=false update -q && \ apt-get install -yyq --no-install-recommends \ autoconf \ @@ -61,17 +59,14 @@ RUN apt-get -o Acquire::Check-Valid-Until=false update -q && \ libbz2-dev \ libssl-dev \ libtool \ - libx11-dev:i386 \ make \ mercurial \ ninja-build \ p7zip-full \ procps \ - python-dev \ python-pip \ python-setuptools \ python-virtualenv \ - scons \ subversion \ tar \ unzip \