blob: 21a10339fbff494a6f21060a6dd646cd71d26128 (
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
|
# syntax=docker.io/docker/dockerfile:1.7-labs
# Copyright 2025 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 email-reporter-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 /bin/email-reporter /build/syz-cluster/email-reporter
# Build the container.
FROM alpine:latest
RUN apk update && \
apk add git
WORKDIR /app
COPY --from=email-reporter-builder /bin/email-reporter /bin/email-reporter
ENTRYPOINT ["/bin/email-reporter"]
|