From 3794363cacb13f3df3587de524b1e53fc6803d3f Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 6 Mar 2026 16:21:14 -0800 Subject: [PATCH] fix: include libcap-dev dependency when creating a devcontainer for building Codex (#13814) I mainly use the devcontainer to be able to run `cargo clippy --tests` locally for Linux. We still need to make it possible to run clippy from Bazel so I don't need to do this! --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d020dfe73..8c3a85977 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update && \ RUN apt-get update && \ apt-get install -y --no-install-recommends \ build-essential curl git ca-certificates \ - pkg-config clang musl-tools libssl-dev just && \ + pkg-config libcap-dev clang musl-tools libssl-dev just && \ rm -rf /var/lib/apt/lists/* # Ubuntu 24.04 ships with user 'ubuntu' already created with UID 1000.