diff --git a/Dockerfile.build b/Dockerfile.build index 2324e2af4..af4050f4c 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -5,15 +5,8 @@ FROM ghcr.io/foundry-rs/foundry:nightly-ac802618e15039b31e464ae6d1fe3ee39f87cefd FROM $CROSS_BASE_IMAGE COPY --from=foundry /usr/local/bin/forge /usr/local/bin/forge -# Install Node.js 14.x and Yarn -RUN apt-get update \ - && apt-get install -y curl \ - && curl -fsSL https://deb.nodesource.com/setup_14.x | bash - \ - && apt-get install -y nodejs \ - && npm install -g yarn \ - && apt-get clean - RUN apt-get update && apt-get install -y unzip +RUN curl -fsSL https://bun.sh/install | BUN_INSTALL=/usr bash # Install Protobuf compiler v3 RUN curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.15.8/protoc-3.15.8-linux-x86_64.zip \