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
4 changes: 2 additions & 2 deletions src/headless-chrome/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ apt-get update
apt-get install -y --no-install-recommends \
ca-certificates \
curl \
unzip \
fonts-liberation \
libasound2t64 \
libatk-bridge2.0-0t64 \
Expand All @@ -36,7 +35,8 @@ apt-get install -y --no-install-recommends \
libxext6 \
libxfixes3 \
libxkbcommon0 \
libxrandr2
libxrandr2 \
unzip
rm -rf /var/lib/apt/lists/*

# Resolve: the channel keyword to a concrete version (exact versions pass through).
Expand Down
4 changes: 2 additions & 2 deletions src/latex/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y --no-install-recommends \
ca-certificates \
wget \
fontconfig \
perl \
fontconfig
wget
rm -rf /var/lib/apt/lists/*

# Fetch: the year-matched installer bootstrap, persisted so the hook can reuse it at runtime.
Expand Down
12 changes: 12 additions & 0 deletions test/claude-code/channel_stable.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
set -e

# Import the test library
source dev-container-features-test-lib

# The stable channel picks the current release, so assert claude installs and runs.
check "claude on PATH" bash -lc "command -v claude"
check "claude version" bash -lc "claude --version"

# Report result
reportResults
8 changes: 8 additions & 0 deletions test/claude-code/scenarios.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,13 @@
"settingsJson": "{\\\"env\\\":{\\\"IS_DEMO\\\":\\\"1\\\"}}"
}
}
},
"channel_stable": {
"image": "ubuntu:24.04",
"features": {
"claude-code": {
"version": "stable"
}
}
}
}
Loading