-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
34 lines (24 loc) · 820 Bytes
/
Dockerfile
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
31
32
33
34
################################################################################
# Build
################################################################################
FROM golang:1.21-alpine3.18 as builder
ARG BUILD_TAGS
RUN apk update && apk add \
make \
linux-headers \
musl-dev \
gcc \
libpcap-dev
WORKDIR /app
COPY internal internal
COPY pkg pkg
COPY go.mod go.sum main.go Makefile ./
RUN make static build_tags="${BUILD_TAGS}"
################################################################################
# Final
################################################################################
FROM alpine:3.18
RUN apk update && apk add ca-certificates
COPY --from=builder /app/build/go-lanscan /scan
RUN mkdir -p /reports
ENTRYPOINT [ "/scan", "--out-file", "/reports/scan-report.json" ]