Compare commits

..

No commits in common. "5c8a39ad755804453fcb6c32cdf31e020818757a" and "2866c9915d8cbd2a912de766318192035b18354c" have entirely different histories.

2 changed files with 2 additions and 7 deletions

View File

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

View File

@ -8,8 +8,6 @@ StartLimitBurst=5
StartLimitIntervalSec=20
[Service]
User=1000
Group=1000
Restart=always
RestartSec=1
ExecStart=/bin/probehost2 --logfilepath "/var/log/probehost2.log" --port 8000