osrs-prometheus-exporter/Dockerfile

11 lines
257 B
Docker
Raw Normal View History

2023-04-05 02:32:25 +02:00
FROM scratch
2023-04-06 02:22:52 +02:00
COPY ${CI_WORKSPACE}/target/release/osrs-prometheus-exporter /bootstrap
ENV OTEL_SERVICE_NAME osrs-prometheus-exporter
ENV OTEL_EXPORTER_OTLP_ENDPOINT http://localhost:4317
ENV OTEL_EXPORTER_OTLP_PROTOCOL grpc
2023-04-06 02:22:52 +02:00
EXPOSE 3030
2023-04-05 02:32:25 +02:00
CMD ["/bootstrap"]