Skip to content
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
4 changes: 3 additions & 1 deletion lighthouse/Dockerfile.source
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM rust:trixie AS builder
ARG DOCKER_TAG
ARG DOCKER_REPO

RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y --no-install-recommends cmake libclang-dev protobuf-compiler
RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y --no-install-recommends cmake clang libclang-dev protobuf-compiler

ARG BUILD_TARGET
ARG SRC_REPO
Expand All @@ -15,6 +15,8 @@ ENV FEATURES portable,gnosis,slasher-lmdb,beacon-node-leveldb
WORKDIR /usr/src

ARG SRC_DIR=lighthouse
ENV CC=clang
ENV CXX=clang++
RUN bash -eo pipefail <<'EOF'
git clone "$SRC_REPO" "$SRC_DIR"
cd "$SRC_DIR"
Expand Down
Loading