From 4bf5d6ba7e5aa0e65f6b7928ac2ebc8f64e9db80 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 29 Dec 2025 21:03:30 +0100 Subject: syz-cluster: add pkg/osutil to Docker containers It's become necessary after #6533. --- syz-cluster/controller/Dockerfile | 1 + syz-cluster/dashboard/Dockerfile | 1 + syz-cluster/reporter-server/Dockerfile | 1 + syz-cluster/tools/db-mgmt/Dockerfile | 1 + 4 files changed, 4 insertions(+) (limited to 'syz-cluster') diff --git a/syz-cluster/controller/Dockerfile b/syz-cluster/controller/Dockerfile index 4588f8a0d..8b48aa279 100644 --- a/syz-cluster/controller/Dockerfile +++ b/syz-cluster/controller/Dockerfile @@ -7,6 +7,7 @@ COPY go.mod ./ COPY go.sum ./ RUN go mod download COPY pkg/gcs/ pkg/gcs/ +COPY pkg/osutil/ pkg/osutil/ # Build the tool. COPY syz-cluster/controller/ syz-cluster/controller/ diff --git a/syz-cluster/dashboard/Dockerfile b/syz-cluster/dashboard/Dockerfile index 70251ee7a..42b64f4da 100644 --- a/syz-cluster/dashboard/Dockerfile +++ b/syz-cluster/dashboard/Dockerfile @@ -7,6 +7,7 @@ COPY go.mod ./ COPY go.sum ./ RUN go mod download COPY pkg/gcs/ pkg/gcs/ +COPY pkg/osutil/ pkg/osutil/ COPY pkg/html/urlutil/ pkg/html/urlutil/ # Build the tool. diff --git a/syz-cluster/reporter-server/Dockerfile b/syz-cluster/reporter-server/Dockerfile index ed94db937..82f34946c 100644 --- a/syz-cluster/reporter-server/Dockerfile +++ b/syz-cluster/reporter-server/Dockerfile @@ -7,6 +7,7 @@ COPY go.mod ./ COPY go.sum ./ RUN go mod download COPY pkg/gcs/ pkg/gcs/ +COPY pkg/osutil/ pkg/osutil/ # Build the tool. COPY syz-cluster/reporter-server/ syz-cluster/reporter-server/ diff --git a/syz-cluster/tools/db-mgmt/Dockerfile b/syz-cluster/tools/db-mgmt/Dockerfile index b913c23a8..31c3b12d3 100644 --- a/syz-cluster/tools/db-mgmt/Dockerfile +++ b/syz-cluster/tools/db-mgmt/Dockerfile @@ -7,6 +7,7 @@ COPY go.mod ./ COPY go.sum ./ RUN go mod download COPY pkg/gcs/ pkg/gcs/ +COPY pkg/osutil/ pkg/osutil/ # Build the tool. COPY syz-cluster/tools/db-mgmt/*.go syz-cluster/tools/db-mgmt/ -- cgit mrf-deployment