Skip to content

Commit bdabf11

Browse files
authored
Revert "⬆️ Upgrade bb version" (#1175)
Reverts #1144
1 parent 00c19b0 commit bdabf11

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/docker/Dockerfile.alpine

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ FROM rust:alpine AS builder
22
RUN apk add gcc musl-dev g++
33
RUN cargo install --version 2.0.0 risc0-r0vm
44

5-
FROM ubuntu:24.04
5+
FROM alpine:latest
66
COPY --from=builder /usr/local/cargo/bin/r0vm /usr/local/bin/r0vm
77

88
# 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
9+
RUN apk add --no-cache curl bash
10+
ENV SHELL=/bin/bash
11+
RUN curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/master/barretenberg/cpp/installation/install | bash
1112
ENV PATH="/root/.bb:$PATH"
12-
RUN bbup -v 0.82.2
13+
RUN bbup -v 0.41.0
14+
15+

0 commit comments

Comments
 (0)