We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00c19b0 commit bdabf11Copy full SHA for bdabf11
.github/docker/Dockerfile.alpine
@@ -2,11 +2,14 @@ FROM rust:alpine AS builder
2
RUN apk add gcc musl-dev g++
3
RUN cargo install --version 2.0.0 risc0-r0vm
4
5
-FROM ubuntu:24.04
+FROM alpine:latest
6
COPY --from=builder /usr/local/cargo/bin/r0vm /usr/local/bin/r0vm
7
8
# installing Barrenteberg CLI
9
-RUN apt-get update && apt-get install -y curl bash
10
-RUN curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/master/barretenberg/bbup/install | bash
+RUN apk add --no-cache curl bash
+ENV SHELL=/bin/bash
11
+RUN curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/master/barretenberg/cpp/installation/install | bash
12
ENV PATH="/root/.bb:$PATH"
-RUN bbup -v 0.82.2
13
+RUN bbup -v 0.41.0
14
+
15
0 commit comments