From 8abfa3893ab0cc05ef7ba0ee7d92e2644aa3b5cd Mon Sep 17 00:00:00 2001 From: Joe Runde Date: Thu, 26 Sep 2024 15:10:24 -0600 Subject: [PATCH] :fire: remove sudo Signed-off-by: Joe Runde --- Dockerfile.ubi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.ubi b/Dockerfile.ubi index b203e6b7ea244..42a3b90ac34a9 100644 --- a/Dockerfile.ubi +++ b/Dockerfile.ubi @@ -97,7 +97,7 @@ RUN rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch. RUN echo "Installing sccache..." \ && curl -L -o sccache.tar.gz https://github.com/mozilla/sccache/releases/download/v0.8.1/sccache-v0.8.1-x86_64-unknown-linux-musl.tar.gz \ && tar -xzf sccache.tar.gz \ - && sudo mv sccache-v0.8.1-x86_64-unknown-linux-musl/sccache /usr/bin/sccache \ + && mv sccache-v0.8.1-x86_64-unknown-linux-musl/sccache /usr/bin/sccache \ && rm -rf sccache.tar.gz sccache-v0.8.1-x86_64-unknown-linux-musl # Configure sccache to point to public vllm cache for now ENV SCCACHE_BUCKET_NAME=vllm-build-sccache