blob: aae9d893dad90ab40e037181c23bd1d0edbd2281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
FROM $DOCKER_IMAGE_PARENT
MAINTAINER Ben Hearsum <bhearsum@mozilla.com>
VOLUME /builds/worker/checkouts
VOLUME /builds/worker/workspace
RUN dpkg --add-architecture amd64
RUN apt-get update && \
apt-get install \
bzip2 \
curl \
git \
gzip \
openssh-client \
python2 \
unzip \
zip
COPY known_hosts /etc/ssh/ssh_known_hosts
|