aboutsummaryrefslogtreecommitdiffstats
path: root/syz-cluster/workflow/fuzz-step
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2025-12-31 11:45:07 +0100
committerAleksandr Nogikh <nogikh@google.com>2025-12-31 12:47:10 +0000
commit49aa01cc85881401b4863fee7eb2d1a0b24daa93 (patch)
tree84073e368d45bdcabe00e1fa4b71bc5cae540d39 /syz-cluster/workflow/fuzz-step
parentd32f762a1f4d1a1e4bd4b116b42b5cd263892f71 (diff)
syz-cluster: refactor Dockerfiles
Copy everything into the build context. Add a .dockerignore file to avoid copying the definitely unnecessary files and folders. Check copyrights presence in Dockerfiles.
Diffstat (limited to 'syz-cluster/workflow/fuzz-step')
-rw-r--r--syz-cluster/workflow/fuzz-step/Dockerfile1
1 files changed, 0 insertions, 1 deletions
diff --git a/syz-cluster/workflow/fuzz-step/Dockerfile b/syz-cluster/workflow/fuzz-step/Dockerfile
index bc11e80da..c9466a509 100644
--- a/syz-cluster/workflow/fuzz-step/Dockerfile
+++ b/syz-cluster/workflow/fuzz-step/Dockerfile
@@ -10,7 +10,6 @@ COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN make TARGETARCH=amd64
-COPY syz-cluster/ syz-cluster/
RUN GO_FLAGS=$(make go-flags 2>/dev/null) && go build "$GO_FLAGS" -o /bin/fuzz-step /build/syz-cluster/workflow/fuzz-step
FROM debian:bookworm