SCA-235: install git for desktop backend runtime lock - #10807
Merged
Conversation
Git-on-my-level
added a commit
that referenced
this pull request
Jul 29, 2026
… build (#10816) ## Summary - Add `gcc` to `backend/Dockerfile.desktop_backend` apt-get install line - Unblocks `webrtcvad==2.0.10` C extension build during `uv pip sync` ## Context Follow-up to #10686 (replace Rust cloud backend with Python) and #10807 (add git for pyogg VCS source). The dev deployment has failed on every post-merge run since #10686 landed. The error: ``` webrtcvad==2.0.10 → gcc: No such file or directory error: command 'gcc' failed: No such file or directory ``` `webrtcvad` compiles a C extension (`_webrtcvad`) and needs a C compiler in the builder image. The slim Python base image ships no compiler toolchain. ## Verification - Confirmed `pylock.runtime.toml` locks `webrtcvad==2.0.10` which requires C compilation - Diff adds only `gcc` to the existing apt-get line (no other changes) - CI auto-dev workflow will exercise the full Docker build on next push Failure-Class: none
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.
Summary
gitin the desktop-backend builder before syncing the runtime lockpyoggdependency introduced by refactor(desktop): replace Rust cloud backend with Python #10686Context
Follow-up to #10686. The dev deployment failed during its image build: https://github.com/BasedHardware/omi/actions/runs/30405177980
The slim Python builder ran
uv pip syncwithout Git, whilepyoggis locked fromgit+https://github.com/TeamPyOgg/PyOgg. The agent-VM lock has no Git-sourced dependency, so its Dockerfile is unchanged.Verification
make setupmake preflightdocker build -f backend/Dockerfile.desktop_backend .(blocked before build layers because the local Docker daemon lacks authentication to pullgcr.io/based-hardware-dev/python:3.11-slim-forky; GCR returned 403)pylock.runtime.tomlretains the Git VCS entry forpyogg, and the Dockerfile installs Git beforeuv pip syncResidual risk
The full image build remains to be exercised by authenticated CI. This change deliberately adds only Git, not compilers or unrelated build tooling.
Failure-Class: none
Closes SCA-235