Skip to content

⬆️ Upgrade bb version #1144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -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 link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Toute l'idée de ce Dockerfile ( nommé .alpine) c'est de pouvoir partir d'une base alpine et d'y builder les dépendances dont on a besoin pour pouvoir utiliser alpine comme base de hyle. Si on met ubuntu ici, autant basarder le fichier et installer r0vm & bbup directement dans le Dockerfile principal, mais je trouve ça dommage

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
Loading