We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ece5ca6 commit a30b6b0Copy full SHA for a30b6b0
1 file changed
Dockerfile
@@ -1,9 +1,17 @@
1
FROM rust:1.88-bookworm AS builder
2
3
+RUN apt-get update && apt-get install -y \
4
+ cmake \
5
+ clang \
6
+ libclang-dev \
7
+ protobuf-compiler \
8
+ git \
9
+ && rm -rf /var/lib/apt/lists/*
10
+
11
WORKDIR /build
12
COPY . .
13
-RUN git submodule update --init --recursive
14
+RUN cd lighthouse && git submodule update --init --recursive
15
16
WORKDIR /build/lighthouse
17
0 commit comments