blob: b1cd9d40d010635dd7ee231223b0112d89cfe96d (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
FROM $DOCKER_IMAGE_PARENT
MAINTAINER Nick Alexander <nalexander@mozilla.com>
VOLUME /builds/worker/checkouts
VOLUME /builds/worker/workspace
VOLUME /builds/worker/tooltool-cache
# rsync is required for l10n single locale repacks. less, screen, and
# vim, help debugging interactive tasks in Task Cluster.
# git and openssh-client are used to upload GeckoView javadoc to Github.
RUN apt-get update && \
apt-get install \
autoconf2.13 \
build-essential \
base-files \
ccache \
cmake \
curl \
file \
gnupg \
jq \
less \
openssh-client \
procps \
python-cryptography \
python-dev \
python-pip \
python-setuptools \
python-virtualenv \
python3-dev \
rsync \
screen \
sudo \
tar \
unzip \
uuid \
valgrind \
vim \
wget \
yasm \
zip
# Add wrapper scripts for xvfb allowing tasks to easily retry starting up xvfb.
# %include taskcluster/docker/recipes/xvfb.sh
COPY topsrcdir/taskcluster/docker/recipes/xvfb.sh /builds/worker/scripts/xvfb.sh
# %include taskcluster/docker/recipes/prepare_openjdk.sh
COPY topsrcdir/taskcluster/docker/recipes/prepare_openjdk.sh /tmp/prepare_openjdk.sh
RUN /tmp/prepare_openjdk.sh && rm /tmp/prepare_openjdk.sh
# Observe missing --no-install-recommends, in order to install glib2.0/gconf/etc.
RUN apt-get install \
libgconf-2-4 \
libgnome2-0 \
openjdk-8-jdk-headless
# Back to the workdir, matching desktop-build.
WORKDIR /builds/worker
|