From 71de8220898fd5761004186f1bba05bb8aeed1d8 Mon Sep 17 00:00:00 2001 From: Manuel Holtgrewe Date: Thu, 25 Jul 2024 13:29:31 +0200 Subject: [PATCH] ci: fix protoc install prefix in Dockerfile (#417) --- utils/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/docker/Dockerfile b/utils/docker/Dockerfile index af468f9b..c4462498 100644 --- a/utils/docker/Dockerfile +++ b/utils/docker/Dockerfile @@ -27,7 +27,7 @@ RUN apt-get update && \ RUN rustup component add rustfmt # Install build dependency `protoc`. COPY utils/install-protoc.sh /tmp -RUN CMAKE_INSTALL_PREFIX=/usr/local bash /tmp/install-protoc.sh +RUN PREFIX=/usr/local bash /tmp/install-protoc.sh # Now for the two-step building. #