diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-12-29 21:03:30 +0100 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-12-30 09:50:25 +0000 |
| commit | 4bf5d6ba7e5aa0e65f6b7928ac2ebc8f64e9db80 (patch) | |
| tree | 1fc090c599f9422d81faaf971543eb28429337a9 | |
| parent | f6a71839887bd670c63c33b583846521b29795fa (diff) | |
syz-cluster: add pkg/osutil to Docker containers
It's become necessary after #6533.
| -rw-r--r-- | syz-cluster/controller/Dockerfile | 1 | ||||
| -rw-r--r-- | syz-cluster/dashboard/Dockerfile | 1 | ||||
| -rw-r--r-- | syz-cluster/reporter-server/Dockerfile | 1 | ||||
| -rw-r--r-- | syz-cluster/tools/db-mgmt/Dockerfile | 1 |
4 files changed, 4 insertions, 0 deletions
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/ |
