From 3fca434708aab2923c3b320ff993133cc15f81a5 Mon Sep 17 00:00:00 2001 From: Samuel Karp Date: Tue, 14 May 2024 01:58:50 -0700 Subject: [PATCH] containerd: use main branch of instrumentation (#11953) The github.com/AdamKorcz/instrumentation package is used as part of the oss-fuzz implementation for containerd, however the dev branch is missing commits that add support for Go 1.22. Signed-off-by: Samuel Karp --- projects/containerd/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/containerd/Dockerfile b/projects/containerd/Dockerfile index f74e9189a..e3626f760 100644 --- a/projects/containerd/Dockerfile +++ b/projects/containerd/Dockerfile @@ -17,6 +17,6 @@ FROM gcr.io/oss-fuzz-base/base-builder-go RUN apt-get update && apt-get install -y btrfs-progs libc-dev pkg-config libseccomp-dev gcc wget libbtrfs-dev RUN git clone --depth 1 https://github.com/containerd/containerd -RUN git clone --depth=1 --branch=dev https://github.com/AdamKorcz/instrumentation +RUN git clone --depth=1 https://github.com/AdamKorcz/instrumentation COPY build.sh $SRC/ WORKDIR $SRC/containerd