File tree Expand file tree Collapse file tree
query-container/query-host Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,11 @@ COPY . .
2020WORKDIR /usr/src
2121RUN cargo install --path .
2222
23- FROM gcr.io/distroless/cc
23+ FROM debian:bullseye-slim
24+ RUN apt-get update && apt-get install -y --no-install-recommends \
25+ ca-certificates \
26+ libssl1.1 \
27+ && rm -rf /var/lib/apt/lists/*
2428ENV RUST_BACKTRACE=1
2529COPY --from=builder /usr/local/cargo/bin/query-host /usr/local/bin/query-host
2630USER root
Original file line number Diff line number Diff line change @@ -387,12 +387,7 @@ impl QueryActor {
387387 } ;
388388
389389 let core_settings = DrasiServerCoreSettings {
390- host : "127.0.0.1" . into ( ) ,
391- port : 8888 ,
392- log_level : "info" . into ( ) ,
393- disable_persistence : true ,
394- max_connections : 100 ,
395- shutdown_timeout_seconds : 300 ,
390+ id : self . query_container_id . to_string ( ) ,
396391 } ;
397392
398393 // Construct a SourceConfig defining a platform Source for each source in the QuerySpec
You can’t perform that action at this time.
0 commit comments