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!
This commit is contained in:
Michael Bolin 2026-03-06 16:21:14 -08:00 committed by GitHub
parent a11c59f634
commit 3794363cac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,7 @@ RUN apt-get update && \
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
build-essential curl git ca-certificates \ 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/* rm -rf /var/lib/apt/lists/*
# Ubuntu 24.04 ships with user 'ubuntu' already created with UID 1000. # Ubuntu 24.04 ships with user 'ubuntu' already created with UID 1000.