Install libprotobuf-dev in the Containerfile build stage - #29
Open
0bserver07 wants to merge 1 commit into
Open
Conversation
The Rust stage installed protobuf-compiler, which provides protoc but not the well-known .proto files that walgit/v1/wal.proto imports, so the walgit-proto build script failed with "google/protobuf/timestamp.proto: File not found" and the image never built (tobi#21). On Debian those files ship in libprotobuf-dev. jeonck checked both packages in the stage's own base image; the image has not been rebuilt on this machine. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This was referenced Aug 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #21.
The Rust stage of the
Containerfileinstallsprotobuf-compiler, which gives youprotocbut not the well-known.protofiles thatwalgit/v1/wal.protoimports (google/protobuf/timestamp.proto), so walgit-proto's build script fails and the image never builds. On Debian those files ship inlibprotobuf-dev; this adds it to the same apt line.@jeonck checked both packages in the stage's base image (
rust:1.97-bookworm) in #21. I haven't rebuilt the image on this machine; happy to set up a build if you'd like to see it green first.