fix(docker): install protoc to fix lance-encoding build (#2995)

This commit is contained in:
davidroman1914 2025-06-21 16:56:11 -07:00 committed by GitHub
parent 3d56565776
commit 9c8e1b0435
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
RUN echo 'export PATH="$HOME/.jbang/bin:$PATH"' >> ~/.bashrc