From bcd3caec3290e92c218a9aafd84489b1dceceb32 Mon Sep 17 00:00:00 2001 From: KCarretto Date: Sat, 8 Feb 2025 00:37:21 +0000 Subject: [PATCH] [Dev] Add missing devcontainer dependencies --- .devcontainer/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 190ed5350..ef5f4878e 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -10,5 +10,8 @@ RUN bash /tmp/library-scripts/jekyll-debian.sh RUN SNIPPET="export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" \ && echo $SNIPPET >> "/root/.bashrc" -# Install additional rust dependencies for static cross compile builds -RUN apt update && apt install -y musl-tools gcc-mingw-w64 \ No newline at end of file +# Install additional dependencies +# - Git: git-lfs +# - Rust Cross-compilation: musl-tools gcc-mingw-w64 +# - Protobuf: protobuf-compiler protoc-gen-go protoc-gen +RUN apt update && apt install -y git-lfs musl-tools gcc-mingw-w64 protobuf-compiler protoc-gen-go protoc-gen-go-grpc