From 0a1015bec91230b44c18f9ab68afe2ffa43a75a8 Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Mon, 28 Oct 2024 10:51:10 +0800 Subject: [PATCH] Revert "Refactor(deps) update rust and golang versions in dockerfile" (#805) Revert "Refactor(deps) update rust and golang versions in dockerfile (#804)" This reverts commit a70ecd8ceb6692c52f3cb760e566253db3855eaf. Signed-off-by: yxxhero --- ci/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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