Skip to content

Commit

Permalink
fix Dockerfile to install protoc
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Disselkoen <[email protected]>
  • Loading branch information
cdisselkoen committed Dec 9, 2024
1 parent 2358255 commit 070b1bf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ RUN . ~/.profile; cargo install cargo-fuzz
# Install Lean
RUN wget https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh && sh elan-init.sh -y --default-toolchain none

# Install protoc
RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v29.0/protoc-29.0-linux-x86_64.zip && unzip protoc-29.0-linux-x86_64.zip && rm protoc-29.0-linux-x86_64.zip

FROM prepare AS build

ENV CEDAR_SPEC_ROOT=/opt/src/cedar-spec
Expand Down

0 comments on commit 070b1bf

Please sign in to comment.