diff options
Diffstat (limited to 'taskcluster/docker/mingw32-build/Dockerfile')
-rw-r--r-- | taskcluster/docker/mingw32-build/Dockerfile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/taskcluster/docker/mingw32-build/Dockerfile b/taskcluster/docker/mingw32-build/Dockerfile new file mode 100644 index 0000000000..b6a615de78 --- /dev/null +++ b/taskcluster/docker/mingw32-build/Dockerfile @@ -0,0 +1,43 @@ +FROM $DOCKER_IMAGE_PARENT +MAINTAINER Mike Hommey <mhommey@mozilla.com> + +VOLUME /builds/worker/checkouts +VOLUME /builds/worker/workspace +VOLUME /builds/worker/tooltool-cache + +ENV XZ_OPT=-T0 + +RUN dpkg --add-architecture i386 + +# Ideally, we wouldn't need gcc-multilib and the extra linux-libc-dev, +# but the latter is required to make the former installable, and the former +# because of bug 1409276. +RUN apt-get update && \ + apt-get install \ + autoconf2.13 \ + bison \ + bzip2 \ + flex \ + curl \ + file \ + gawk \ + g++-multilib \ + gnupg \ + jq \ + libucl1 \ + libxml2 \ + patch \ + python3-dev \ + p7zip-full \ + scons \ + tar \ + unzip \ + uuid \ + wget \ + x11-utils \ + xvfb \ + yasm \ + zip \ + zlib1g-dev \ + libfreetype6-dev:i386 \ + libx11-dev:i386 |