fix(docker): proxy builds on rust:1-bookworm (was pinned to 1.78)#15
Merged
Conversation
The image pinned rust:1.78, but a Cargo.lock dependency now requires the Rust 2024 edition (>= 1.85), so 'cargo build --release' failed with an edition-2024 error (builds fine locally on 1.95). Bumped the builder to rust:1-bookworm (glibc-compatible with the debian:bookworm-slim runtime). Added .dockerignore so the 1.7 GB target/ dir isn't shipped into the build context. Validated: the image now builds and runs in the compose stack.
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.
The proxy Dockerfile pinned
rust:1.78, but a dependency requires the Rust 2024 edition (>= 1.85), so the container build failed (works locally on rustc 1.95). Bumped torust:1-bookworm+ added.dockerignoreto keeptarget/out of the build context. Validated by building + running it in the single-host compose stack.