You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
447 B
Docker
15 lines
447 B
Docker
FROM alpine:3.8 as downloader
|
|
MAINTAINER Hanjo Meinhardt <hanjo@bunix.de>
|
|
|
|
RUN apk add --no-cache curl tar gzip
|
|
|
|
RUN curl -L https://github.com/giantswarm/prometheus-pingdom-exporter/releases/download/0.1.1/prometheus-pingdom-exporter.0.1.1.linux.tar.gz | tar xz
|
|
|
|
FROM alpine:3.8
|
|
|
|
COPY --from=downloader /prometheus-pingdom-exporter /prometheus-pingdom-exporter
|
|
|
|
RUN apk --no-cache add ca-certificates
|
|
|
|
ENTRYPOINT ["/prometheus-pingdom-exporter"]
|