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
5 changes: 4 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,11 @@ This repository follows the Dev Container template specification:
- Implements network isolation using iptables and ipset
- Allows connections only to:
- GitHub (dynamically fetched IP ranges)
- npm registry
- npm registry (registry.npmjs.org)
- Python Package Index (pypi.org, files.pythonhosted.org, pypi.python.org)
- VS Code Extension Marketplace (marketplace.visualstudio.com, *.gallery.vsassets.io, vscode.blob.core.windows.net)
- Anthropic API endpoints
- 1Password domains (for secret management)
- Host network (for local development)
- Preserves Docker's internal DNS resolution
- Verifies firewall configuration after setup
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,9 @@ See `.env.example` for all available options.
By default, only these domains are accessible:
- GitHub (github.com, api.github.com, etc.)
- npm registry (registry.npmjs.org)
- Anthropic API (api.anthropic.com)
- Docker Hub (hub.docker.com)
- Python Package Index (pypi.org, files.pythonhosted.org, pypi.python.org)
- VS Code Extension Marketplace (marketplace.visualstudio.com, *.gallery.vsassets.io, vscode.blob.core.windows.net)
- Anthropic API (api.anthropic.com, statsig.anthropic.com, sentry.io)
- 1Password (*.1password.com, *.1password.eu, *.1password.ca, *.1passwordservices.com)

#### Adding Custom Domains
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ readonly BUILTIN_DOMAINS=(
"pypi.org"
"files.pythonhosted.org"
"pypi.python.org"
# VS Code Extension Marketplace
"marketplace.visualstudio.com"
"gallery.vsassets.io"
"gallerycdn.vsassets.io"
"vscode.blob.core.windows.net"
)

# 1Password configuration
Expand Down