mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2024-12-11 17:36:21 +00:00
5fec9aacab
Docker 1.12 completely broke setting entrypoints on import, so we need to switch to using an actual Dockerfile.
8 lines
106 B
Docker
8 lines
106 B
Docker
FROM scratch
|
|
|
|
COPY postgres_exporter /postgres_exporter
|
|
|
|
EXPOSE 9113
|
|
|
|
ENTRYPOINT [ "/postgres_exporter" ]
|