probehost2/docker/Dockerfile

13 lines
254 B
Docker
Raw Permalink Normal View History

2021-12-28 04:23:33 +00:00
FROM golang:latest as builder
WORKDIR /build
COPY . .
RUN go get -u
RUN CGO_ENABLED=0 go build -o probehost2
2021-12-28 03:29:37 +00:00
2021-12-28 04:23:33 +00:00
FROM alpine:latest
2021-12-28 03:29:37 +00:00
RUN apk update
2022-01-01 22:15:39 +00:00
RUN apk add mtr iputils
2021-12-28 04:23:33 +00:00
COPY --from=builder /build/probehost2 /
RUN touch /probehost2.log
CMD ["/probehost2"]