blob: 5c940dbd90d3933747374be5124b46cf4322e63a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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 \
unzip \
zip
COPY known_hosts /etc/ssh/ssh_known_hosts
|