diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /taskcluster/docker/mingw32-build | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-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 |