diff --git a/ci/Dockerfile b/ci/Dockerfile index 1b96e769..059b28b7 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,8 +1,8 @@ -FROM rust:1.80 AS builder +FROM rust:1.80.0 AS builder WORKDIR /app/client -RUN apt-get update && apt-get install -y --no-install-recommends \ +RUN apt-get update && apt-get install -y \ openssl libclang-dev pkg-config protobuf-compiler git \ && rm -rf /var/lib/apt/lists/* @@ -48,7 +48,7 @@ RUN if [ "$(uname -m)" = "ppc64le" ]; then \ fi && \ chmod +x /bin/grpc_health_probe -FROM golang:1.23 AS pprof +FROM golang:1.23.0-alpine3.20 AS pprof RUN go install github.com/google/pprof@latest