19 lines
556 B
Docker
19 lines
556 B
Docker
FROM golang:1.13.8 as builder
|
|
WORKDIR /go/src/github.com/influxdata/telegraf
|
|
|
|
COPY . /go/src/github.com/influxdata/telegraf
|
|
RUN CGO_ENABLED=0 make go-install
|
|
|
|
FROM alpine:3.6
|
|
RUN echo 'hosts: files dns' >> /etc/nsswitch.conf
|
|
RUN apk add --no-cache iputils ca-certificates net-snmp-tools procps lm_sensors && \
|
|
update-ca-certificates
|
|
COPY --from=builder /go/bin/* /usr/bin/
|
|
COPY etc/telegraf.conf /etc/telegraf/telegraf.conf
|
|
|
|
EXPOSE 8125/udp 8092/udp 8094
|
|
|
|
COPY scripts/docker-entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["telegraf"]
|