diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-10-07 08:11:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 15:11:31 +0000 |
commit | fc293c68b5e08f5e2cf766cf9356cb42c904a3ca (patch) | |
tree | b0fa3baec1a55472214d8557e6eb85dec6c9fc1d /.devcontainer | |
parent | 9a92603a142f8bc8bfe36d2eec3d1dd86722651b (diff) |
chore: remove protoc dep from CI (#26050)
It shouldn't be needed anymore
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index a82382941..4e7a8d761 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,9 +1,8 @@ FROM mcr.microsoft.com/vscode/devcontainers/rust:1-bullseye -# Install cmake and protobuf-compiler +# Install cmake RUN apt-get update \ && apt-get install -y cmake \ - && apt-get install -y protobuf-compiler \ && rm -rf /var/lib/apt/lists/* # Install Deno |