Skip to content

Commit

Permalink
remove cert file
Browse files Browse the repository at this point in the history
  • Loading branch information
grooviegermanikus committed Mar 21, 2024
1 parent 73d8823 commit 59ea636
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile-benchrunner
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,14 @@ FROM base as build
COPY --from=plan /app/recipe.json recipe.json
RUN cargo chef cook --release --recipe-path recipe.json
COPY . .
RUN cargo build --release --bin solana-lite-rpc-benchrunner-service --bin cert
RUN cargo build --release --bin solana-lite-rpc-benchrunner-service

FROM debian:bookworm-slim as run
RUN apt-get update && apt-get -y install ca-certificates libc6 libssl3 libssl-dev openssl

COPY openssl-legacy.cnf /etc/ssl/openssl-legacy.cnf

COPY --from=build /app/target/release/solana-lite-rpc-benchrunner-service /usr/local/bin/
COPY --from=build /app/target/release/cert /usr/local/bin/

ENV OPENSSL_CONF=/etc/ssl/openssl-legacy.cnf

Expand Down

0 comments on commit 59ea636

Please sign in to comment.