File tree Expand file tree Collapse file tree 6 files changed +8
-26
lines changed Expand file tree Collapse file tree 6 files changed +8
-26
lines changed Original file line number Diff line number Diff line change 6363 "database_os" : " Linux" ,
6464 "port" : 8000 ,
6565 "json_url" : " /json" ,
66- "db_url" : " /db" ,
67- "query_url" : " /queries?q=" ,
68- "fortune_url" : " /fortunes" ,
69- "update_url" : " /updates?q=" ,
7066 "plaintext_url" : " /plaintext"
7167 }
7268 },
8682 "database_os" : " Linux" ,
8783 "port" : 8000 ,
8884 "json_url" : " /json" ,
89- "db_url" : " /db" ,
90- "query_url" : " /queries?q=" ,
91- "fortune_url" : " /fortunes" ,
92- "update_url" : " /updates?q=" ,
9385 "plaintext_url" : " /plaintext"
9486 }
9587 },
109101 "database_os" : " Linux" ,
110102 "port" : 8000 ,
111103 "json_url" : " /json" ,
112- "db_url" : " /db" ,
113- "query_url" : " /queries?q=" ,
114- "fortune_url" : " /fortunes" ,
115- "update_url" : " /updates?q=" ,
116104 "plaintext_url" : " /plaintext"
117105 }
118106 }
Original file line number Diff line number Diff line change 11FROM rust:1.84-slim-bookworm AS builder
22
33RUN apt update && apt install -y --no-install-recommends \
4- libpq-dev pkg-config libssl-dev \
4+ pkg-config \
5+ libpq-dev libssl-dev \
56 && rm -rf /var/lib/apt/lists/*
67
78COPY ./Cargo.toml /build/
Original file line number Diff line number Diff line change 11FROM rust:1.84-slim-bookworm AS builder
22
33RUN apt update && apt install -y --no-install-recommends \
4- libpq-dev pkg-config libssl-dev git \
4+ pkg-config \
5+ git \
56 && rm -rf /var/lib/apt/lists/*
67
78COPY ./Cargo.toml /build/
@@ -19,7 +20,4 @@ FROM gcr.io/distroless/cc-debian12
1920COPY --from=builder /build/rt_glommio/target/release/framework_benchmarks-glommio /app/
2021
2122EXPOSE 8000
22- ENV DATABASE_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database/hello_world
23- ENV MAX_CONNECTIONS=56
24- ENV MIN_CONNECTIONS=56
2523CMD [ "/app/framework_benchmarks-glommio" ]
Original file line number Diff line number Diff line change 11FROM rust:1.84-slim-bookworm AS builder
22
33RUN apt update && apt install -y --no-install-recommends \
4- libpq-dev pkg-config libssl-dev \
4+ pkg-config \
55 && rm -rf /var/lib/apt/lists/*
66
77COPY ./Cargo.toml /build/
@@ -19,7 +19,4 @@ FROM gcr.io/distroless/cc-debian12
1919COPY --from=builder /build/rt_nio/target/release/framework_benchmarks-nio /app/
2020
2121EXPOSE 8000
22- ENV DATABASE_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database/hello_world
23- ENV MAX_CONNECTIONS=56
24- ENV MIN_CONNECTIONS=56
2522CMD [ "/app/framework_benchmarks-nio" ]
Original file line number Diff line number Diff line change 11FROM rust:1.84-slim-bookworm AS builder
22
33RUN apt update && apt install -y --no-install-recommends \
4- libpq-dev pkg-config libssl-dev \
4+ pkg-config \
55 && rm -rf /var/lib/apt/lists/*
66
77COPY ./Cargo.toml /build/
@@ -19,7 +19,4 @@ FROM gcr.io/distroless/cc-debian12
1919COPY --from=builder /build/rt_smol/target/release/framework_benchmarks-smol /app/
2020
2121EXPOSE 8000
22- ENV DATABASE_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database/hello_world
23- ENV MAX_CONNECTIONS=56
24- ENV MIN_CONNECTIONS=56
2522CMD [ "/app/framework_benchmarks-smol" ]
Original file line number Diff line number Diff line change 11FROM rust:1.84-slim-bookworm AS builder
22
33RUN apt update && apt install -y --no-install-recommends \
4- libpq-dev pkg-config libssl-dev \
4+ pkg-config \
5+ libpq-dev libssl-dev \
56 && rm -rf /var/lib/apt/lists/*
67
78COPY ./Cargo.toml /build/
You can’t perform that action at this time.
0 commit comments