From b37a2d948d2bc0a7e5620f7dcd2d16af5b349aa3 Mon Sep 17 00:00:00 2001 From: Khaled Yakdan Date: Sun, 8 Jan 2023 14:19:41 -0800 Subject: [PATCH] etcd: clone the raft repo when building etcd (#9374) The `raft` package was moved into a dedicated repo https://github.com/etcd-io/raft This PR is currently a draft because we should wait until the corresponding fix is merged in `cncf-fuzzing` (https://github.com/cncf/cncf-fuzzing/pull/271) --- projects/etcd/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/etcd/Dockerfile b/projects/etcd/Dockerfile index d0ceb1b65..88093fcfc 100644 --- a/projects/etcd/Dockerfile +++ b/projects/etcd/Dockerfile @@ -16,6 +16,7 @@ FROM gcr.io/oss-fuzz-base/base-builder-go RUN git clone --depth 1 https://github.com/etcd-io/etcd +RUN git clone --depth 1 https://github.com/etcd-io/raft RUN git clone --depth 1 https://github.com/cncf/cncf-fuzzing COPY build.sh $SRC/ WORKDIR $SRC/etcd