diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c573d7b60f..a823829419 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,5 +1,11 @@ FROM mcr.microsoft.com/vscode/devcontainers/rust:1-bullseye +# Install cmake and protobuf-compiler +RUN apt-get update \ + && apt-get install -y cmake \ + && apt-get install -y protobuf-compiler \ + && rm -rf /var/lib/apt/lists/* + # Install Deno ENV DENO_INSTALL=/usr/local RUN curl -fsSL https://deno.land/x/install/install.sh | sh diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 94b96a6eb6..0c2a26b800 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -15,7 +15,7 @@ "extensions": [ "rust-lang.rust-analyzer", - "bungcip.better-toml", + "tamasfe.even-better-toml", "vadimcn.vscode-lldb", "mutantdino.resourcemonitor" ],