Daan Boerlage
1f93de4b5c
All checks were successful
ci/woodpecker/push/build Pipeline was successful
13 lines
No EOL
293 B
Docker
13 lines
No EOL
293 B
Docker
FROM scratch
|
|
|
|
COPY ${CI_WORKSPACE}/target/release/sleutel /bootstrap
|
|
|
|
ENV OTEL_SERVICE_NAME=sleutel
|
|
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
|
|
|
|
EXPOSE 3030
|
|
|
|
CMD ["/bootstrap"] |