blob: 782a31e3d0033b088b96eea691c2077adfd8552a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# syntax=docker.io/docker/dockerfile:1.7-labs
# Copyright 2024 syzkaller project authors. All rights reserved.
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
FROM golang:1.24-alpine AS triage-step-builder
WORKDIR /build
# Prepare the dependencies.
COPY go.mod go.sum ./
RUN go mod download
# Build the tool.
COPY --exclude=.git . .
RUN go build -o /build/triage-step-bin /build/syz-cluster/workflow/triage-step
FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y git
# pkg/osutil uses syzkaller user for sandboxing.
RUN useradd -u 10000 --create-home syzkaller
# Prevent "fatal: detected dubious ownership in repository" errors.
RUN git config --system --add safe.directory /workdir
RUN git config --system --add safe.directory /kernel-repo
COPY --from=triage-step-builder /build/triage-step-bin /bin/triage-step
ENTRYPOINT ["/bin/series-tracker"]
|