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
|
2023-04-06 16:30:04 +02:00
|
|
|
|
2023-04-06 17:15:12 +02:00
|
|
|
ENV OTEL_SERVICE_NAME=osrs-prometheus-exporter
|
|
|
|
ENV OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
|
|
|
|
ENV OTEL_EXPORTER_OTLP_PROTOCOL=grpc
|
|
|
|
ENV OTEL_TRACES_SAMPLER=always_on
|
|
|
|
ENV axum_tracing_opentelemetry=info
|
2023-04-06 16:30:04 +02:00
|
|
|
|
2023-04-06 02:22:52 +02:00
|
|
|
EXPOSE 3030
|
2023-04-06 16:30:04 +02:00
|
|
|
|
2023-04-05 02:32:25 +02:00
|
|
|
CMD ["/bootstrap"]
|