2019-02-15 22:36:08 +00:00
|
|
|
FROM debian:7.11-slim
|
|
|
|
RUN useradd -u 20001 postgres_exporter
|
|
|
|
|
2016-09-08 14:55:40 +00:00
|
|
|
FROM scratch
|
|
|
|
|
2019-02-15 22:36:08 +00:00
|
|
|
COPY --from=0 /etc/passwd /etc/passwd
|
|
|
|
USER postgres_exporter
|
|
|
|
|
2017-11-29 16:15:53 +00:00
|
|
|
ARG binary
|
|
|
|
|
|
|
|
COPY $binary /postgres_exporter
|
2016-09-08 14:55:40 +00:00
|
|
|
|
2016-11-26 02:06:23 +00:00
|
|
|
EXPOSE 9187
|
2016-09-08 14:55:40 +00:00
|
|
|
|
|
|
|
ENTRYPOINT [ "/postgres_exporter" ]
|