aboutsummaryrefslogtreecommitdiffstats
path: root/syz-cluster/workflow
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2025-01-23 16:09:57 +0100
committerAleksandr Nogikh <nogikh@google.com>2025-01-27 08:57:27 +0000
commitd99a33ad01eb09190a8680d743f8d520e459ef0f (patch)
treed6ea4f873994c913db4cce42f0853c2ef11820fd /syz-cluster/workflow
parentd7b4978434367f0224b7b53d9b0e47df82d0bf5e (diff)
syz-cluster: remove mentions of vendor
Diffstat (limited to 'syz-cluster/workflow')
-rw-r--r--syz-cluster/workflow/boot-step/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-cluster/workflow/boot-step/Dockerfile b/syz-cluster/workflow/boot-step/Dockerfile
index 7fa89e04a..47df2666a 100644
--- a/syz-cluster/workflow/boot-step/Dockerfile
+++ b/syz-cluster/workflow/boot-step/Dockerfile
@@ -8,7 +8,7 @@ WORKDIR /build
# First query the modules to facilitate caching.
COPY go.mod go.sum ./
RUN go mod download
-COPY --exclude=vendor --exclude=syz-cluster . .
+COPY --exclude=syz-cluster . .
RUN make TARGETARCH=amd64
FROM golang:1.23-alpine AS boot-step-builder