From 655fb94614afcfb907bd5fe84d96a35da8dcb8a1 Mon Sep 17 00:00:00 2001 From: maximilien-hyle Date: Mon, 5 May 2025 15:46:15 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20bb=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/docker/Dockerfile.alpine | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/docker/Dockerfile.alpine b/.github/docker/Dockerfile.alpine index 2a18e7c2e..d6c8f9e86 100644 --- a/.github/docker/Dockerfile.alpine +++ b/.github/docker/Dockerfile.alpine @@ -2,14 +2,11 @@ FROM rust:alpine AS builder RUN apk add gcc musl-dev g++ RUN cargo install --version 2.0.0 risc0-r0vm -FROM alpine:latest +FROM ubuntu:24.04 COPY --from=builder /usr/local/cargo/bin/r0vm /usr/local/bin/r0vm # installing Barrenteberg CLI -RUN apk add --no-cache curl bash -ENV SHELL=/bin/bash -RUN curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/master/barretenberg/cpp/installation/install | bash +RUN apt-get update && apt-get install -y curl bash +RUN curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/master/barretenberg/bbup/install | bash ENV PATH="/root/.bb:$PATH" -RUN bbup -v 0.41.0 - - +RUN bbup -v 0.82.2