From 9c8e1b0435f4a2babaac6badcb97ee6042063df0 Mon Sep 17 00:00:00 2001 From: davidroman1914 Date: Sat, 21 Jun 2025 16:56:11 -0700 Subject: [PATCH] fix(docker): install protoc to fix lance-encoding build (#2995) --- documentation/docs/docker/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/documentation/docs/docker/Dockerfile b/documentation/docs/docker/Dockerfile index ac72633df6..fbec7156a6 100644 --- a/documentation/docs/docker/Dockerfile +++ b/documentation/docs/docker/Dockerfile @@ -16,6 +16,8 @@ WORKDIR /usr/src/goose # Copy the entire project COPY . . +RUN apt-get update && apt-get install -y protobuf-compiler + # Build the project RUN cargo build --release @@ -116,4 +118,4 @@ RUN echo 'alias ll="ls -la"' >> ~/.bashrc && \ echo 'alias fd=fdfind' >> ~/.bashrc # Add JBang to PATH -RUN echo 'export PATH="$HOME/.jbang/bin:$PATH"' >> ~/.bashrc \ No newline at end of file +RUN echo 'export PATH="$HOME/.jbang/bin:$PATH"' >> ~/.bashrc