diff options
Diffstat (limited to '.devcontainer/Dockerfile')
| -rw-r--r-- | .devcontainer/Dockerfile | 6 |
1 files changed, 6 insertions, 0 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 |
