diff options
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/Dockerfile | 6 | ||||
-rw-r--r-- | .devcontainer/devcontainer.json | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c573d7b60..a82382941 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 94b96a6eb..0c2a26b80 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" ], |