blob: b6a615de78d58c1a38958d4815f8299f344efd9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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
|