From 335e781d0c5d197d8bf728fde4ccec8513704698 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 28 Jan 2026 15:37:58 +0100 Subject: [PATCH] update required deps for build from sources --- .github/actions/install/action.yml | 2 +- Dockerfile | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index a4567fae..25ce263b 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -32,7 +32,7 @@ runs: shell: bash run: | sudo apt-get update - sudo apt-get install -y wget xz-utils python3 ca-certificates git pkg-config libglib2.0-dev gperf libexpat1-dev cmake clang + sudo apt-get install -y wget xz-utils ca-certificates gcc make git # Zig version used from the `minimum_zig_version` field in build.zig.zon - uses: mlugg/setup-zig@v2 diff --git a/Dockerfile b/Dockerfile index d2b9bf57..dd8f7fac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ARG TARGETPLATFORM RUN apt-get update -yq && \ apt-get install -yq xz-utils ca-certificates \ - clang make curl git + gcc make curl git # Get Rust RUN curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal -y diff --git a/README.md b/README.md index 478a28ed..b2b695f0 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ For **Debian/Ubuntu based Linux**: ``` sudo apt install xz-utils ca-certificates \ - clang make curl git + gcc make curl git ``` You also need to [install Rust](https://rust-lang.org/tools/install/).