8 lines
106 B
Docker
8 lines
106 B
Docker
FROM scratch
|
|
|
|
COPY postgres_exporter /postgres_exporter
|
|
|
|
EXPOSE 9187
|
|
|
|
ENTRYPOINT [ "/postgres_exporter" ]
|