From b4d4c0a18f90fa92ed84f78873f0a7e5b3d61bd1 Mon Sep 17 00:00:00 2001 From: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com> Date: Mon, 10 Jun 2024 10:40:02 +0200 Subject: [PATCH] chore(deps): Update Dockerfile (#2532) Signed-off-by: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com> --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index ba48a837..2b30dccd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ FROM ${BASE_IMAGE} AS requirements-core USER root -ARG GO_VERSION=1.21.7 +ARG GO_VERSION=1.22.4 ARG TARGETARCH ARG TARGETVARIANT @@ -33,8 +33,8 @@ RUN curl -L -s https://go.dev/dl/go${GO_VERSION}.linux-${TARGETARCH}.tar.gz | ta ENV PATH $PATH:/root/go/bin:/usr/local/go/bin # Install grpc compilers -RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0 && \ - go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@8ba23be9613c672d40ae261d2a1335d639bdd59b +RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.1 && \ + go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@1958fcbe2ca8bd93af633f11e97d44e567e945af COPY --chmod=644 custom-ca-certs/* /usr/local/share/ca-certificates/ RUN update-ca-certificates @@ -99,7 +99,7 @@ FROM requirements-${IMAGE_TYPE} AS requirements-drivers ARG BUILD_TYPE ARG CUDA_MAJOR_VERSION=11 -ARG CUDA_MINOR_VERSION=7 +ARG CUDA_MINOR_VERSION=8 ENV BUILD_TYPE=${BUILD_TYPE} @@ -190,7 +190,7 @@ FROM ${GRPC_BASE_IMAGE} AS grpc # This is a bit of a hack, but it's required in order to be able to effectively cache this layer in CI ARG GRPC_MAKEFLAGS="-j4 -Otarget" -ARG GRPC_VERSION=v1.58.0 +ARG GRPC_VERSION=v1.64.2 ENV MAKEFLAGS=${GRPC_MAKEFLAGS} @@ -247,12 +247,12 @@ RUN make prepare # here so that we can generate the grpc code for the stablediffusion build RUN <