aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2022-06-02 09:25:49 +0000
committerAleksandr Nogikh <wp32pw@gmail.com>2022-06-02 11:54:16 +0200
commit6e12f05fa23c4e5c6b61541cc7aa1830977f5244 (patch)
tree1504f480aee083a3b873c4bebfc1197488b95720
parentaa8060f9bd1c8e1800381bc0a3f5e4c6ac03cedd (diff)
tools/docker: add rsync to the syzbot docker
We need it to build Cuttlefish images.
-rw-r--r--tools/docker/syzbot/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/docker/syzbot/Dockerfile b/tools/docker/syzbot/Dockerfile
index e0589884a..65e09b7a3 100644
--- a/tools/docker/syzbot/Dockerfile
+++ b/tools/docker/syzbot/Dockerfile
@@ -26,7 +26,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y -q \
g++-arm-linux-gnueabi g++-aarch64-linux-gnu g++-powerpc64le-linux-gnu \
g++-mips64el-linux-gnuabi64 g++-s390x-linux-gnu g++-riscv64-linux-gnu \
libc6-dev-i386 libc6-dev-i386-amd64-cross lib32gcc-10-dev lib32stdc++-10-dev \
- apt-transport-https curl gnupg python-is-python3
+ apt-transport-https curl gnupg python-is-python3 \
+ # Needed for building Cuttlefish images.
+ rsync
RUN curl https://dl.google.com/go/go1.17.linux-amd64.tar.gz | tar -C /usr/local -xz
ENV PATH /usr/local/go/bin:$PATH