Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

### Added

- `bubblewrap` in the base image so the OpenAI Codex CLI uses the system
`bwrap` for its Linux sandbox instead of warning and falling back to its
bundled helper.

### Removed

- Paseo assistant installation and Selection support.
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ RUN printf 'path-include=/usr/share/doc/fzf/examples/key-bindings.bash\n' \
nano \
zstd \
zoxide \
# bubblewrap: OpenAI Codex CLI's Linux sandbox uses the first bwrap on PATH
# and warns at startup when only its bundled fallback helper is available.
bubblewrap \
toilet \
toilet-fonts \
libicu-dev \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ What's included
| Name | Language | Description |
|------|----------|-------------|
| [bat](https://github.com/sharkdp/bat) | Rust | Cat clone with syntax highlighting |
| [bubblewrap](https://github.com/containers/bubblewrap) | C | Unprivileged sandboxing tool (`bwrap`), used by the Codex CLI sandbox |
| [curl](https://github.com/curl/curl) | C | URL data transfer |
| [delta](https://github.com/dandavison/delta) | Rust | Syntax-highlighting pager for git diffs |
| [difftastic](https://github.com/Wilfred/difftastic) | Rust | Syntax-aware structural diff tool (`difft`) |
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ suite_tools() {
# Candidate suite so publication cannot depend on the separate PR workflow.
local command_name
local -a core_commands=(
bat curl delta difft eza fd fzf gh glow gum jq just mise nano rg
bat bwrap curl delta difft eza fd fzf gh glow gum jq just mise nano rg
starship xh yq zoxide
)
for command_name in "${core_commands[@]}"; do
Expand Down