diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-12-31 11:45:07 +0100 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-12-31 12:47:10 +0000 |
| commit | 49aa01cc85881401b4863fee7eb2d1a0b24daa93 (patch) | |
| tree | 84073e368d45bdcabe00e1fa4b71bc5cae540d39 /syz-cluster/workflow/boot-step | |
| parent | d32f762a1f4d1a1e4bd4b116b42b5cd263892f71 (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/boot-step')
| -rw-r--r-- | syz-cluster/workflow/boot-step/Dockerfile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/syz-cluster/workflow/boot-step/Dockerfile b/syz-cluster/workflow/boot-step/Dockerfile index 573b13593..74e2a6627 100644 --- a/syz-cluster/workflow/boot-step/Dockerfile +++ b/syz-cluster/workflow/boot-step/Dockerfile @@ -17,15 +17,9 @@ WORKDIR /build # Copy the code and the dependencies. COPY go.mod go.sum ./ RUN go mod download -COPY pkg/ pkg/ -COPY prog/ prog/ -COPY vm/ vm/ -COPY executor/ executor/ -COPY dashboard/dashapi/ dashboard/dashapi/ +COPY . . # Copying from the builder to take the `make descriptions` result. COPY --from=syzkaller-builder /build/sys/ sys/ -COPY syz-cluster/workflow/boot-step/*.go syz-cluster/workflow/boot-step/ -COPY syz-cluster/pkg/ syz-cluster/pkg/ RUN go build -o /bin/boot-step /build/syz-cluster/workflow/boot-step |
