docker: trim binary, add standalone traceroute, run as own user

This commit is contained in:
Nils 2022-08-23 03:20:01 +02:00
parent 2866c9915d
commit deab05167d
Signed by: byreqz
GPG Key ID: 396A62D7D436749E
1 changed files with 5 additions and 2 deletions

View File

@ -2,11 +2,14 @@ FROM golang:latest as builder
WORKDIR /build
COPY . .
RUN go get -u
RUN CGO_ENABLED=0 go build -o probehost2
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o probehost2
FROM alpine:latest
RUN apk update
RUN apk add mtr iputils nmap-nping
RUN apk add mtr iputils nmap-nping traceroute
RUN adduser -D probehost2
COPY --from=builder /build/probehost2 /
RUN touch /probehost2.log
RUN chown probehost2:users /probehost2.log
USER probehost2
CMD ["/probehost2"]