From b27551c1f8c1f62c38a9494366fd4814df3ed040 Mon Sep 17 00:00:00 2001 From: mattstam Date: Mon, 5 Aug 2024 14:54:17 -0700 Subject: [PATCH] fix: docker build xz-utils off main 2 --- cli/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/docker/Dockerfile b/cli/docker/Dockerfile index f639579a00..b1635f47e7 100644 --- a/cli/docker/Dockerfile +++ b/cli/docker/Dockerfile @@ -1,12 +1,12 @@ FROM ubuntu:24.04@sha256:e3f92abc0967a6c19d0dfa2d55838833e947b9d74edbcb0113e48535ad4be12a RUN apt-get update \ - && apt-get install -y --no-install-recommends ca-certificates clang curl libssl-dev pkg-config git dialog \ + && apt-get install -y --no-install-recommends ca-certificates clang curl libssl-dev pkg-config git dialog xz-utils \ && curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL 'https://sh.rustup.rs' | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" -RUN curl -L https://sp1.succinct.xyz | bash && ~/.sp1/bin/sp1up +RUN curl -L --no-cache https://sp1.succinct.xyz | bash && ~/.sp1/bin/sp1up # Install the C++ toolchain for RISC-V and create a symlink to it in /root/.sp1/bin RUN mkdir -p /root/.sp1/riscv \