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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | \
sudo tee /etc/apt/sources.list.d/hashicorp.list > /dev/null \
&& apt update \
&& apt-get install -y awscli terraform \
&& apt-get install -y awscli azure-cli terraform \
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*

# Install ast-grep
Expand Down
8 changes: 1 addition & 7 deletions local/etc/uceap.d/devcontainer_on_create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,7 @@ function devcontainer_on_create() {

# Install Claude Code
curl -fsSL https://claude.ai/install.sh | bash
sudo mkdir /etc/claude-code
sudo tee /etc/claude-code/managed-settings.json <<-EOF
{
"forceLoginMethod": "console",
"forceLoginOrgUUID": "15adc0f4-9ba1-4a46-9f53-3aabde62ced6"
}
EOF
echo -e "export CLAUDE_CODE_USE_FOUNDRY=1\nexport ANTHROPIC_FOUNDRY_RESOURCE=uceap-claude-test-resource" | tee -a ~/.bashrc ~/.zshrc ~/.zshrc.local

# Put neovim in the PATH for those who celebrate
ln -s /opt/nvim-linux-x86_64/bin/nvim ~/.local/bin
Expand Down