blob: babd658023c84f4f4d14a14a5a00c303cf1b99f9 (
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
|
FROM $DOCKER_IMAGE_PARENT
MAINTAINER Gabriele Svelto <gsvelto@mozilla.com>
RUN mkdir -p /builds
RUN id worker || useradd -d /builds/worker -s /bin/bash -m worker
WORKDIR /builds/worker
# We need to declare all potentially cache volumes as caches. Also,
# making high I/O paths volumes increase I/O throughput because of
# AUFS slowness.
VOLUME /builds/worker/checkouts
RUN apt-get update && \
apt-get install --no-install-recommends -y \
7zip build-essential curl jq python3-pip unzip wget zip && \
apt-get autoremove -y && rm -rf /var/lib/apt/lists/*
COPY run.sh /builds/worker/run.sh
RUN chown -R worker:worker /builds/worker
RUN pip3 install --break-system-packages crashstats-tools==1.4.0
# Set a default command useful for debugging
CMD ["/bin/bash", "--login"]
|