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 .devcontainer/airgapped/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh

# Update PATH environment for tool access
# Configure paths for Python, Node.js, and other tools
ENV UV_LOCAL_BIN=$HOME/.cargo/bin
ENV UV_LOCAL_BIN=$HOME/.local/bin
ENV USR_LOCAL_BIN=/usr/local/bin
ENV LOCAL_BIN=${HOME}/.local/bin
ENV PNPM_HOME=${HOME}/.local/share/pnpm
Expand Down
3 changes: 2 additions & 1 deletion .devcontainer/auditor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh

# Update PATH environment for tool access
# Configure paths for Python, Node.js, and other tools
ENV UV_LOCAL_BIN=$HOME/.cargo/bin
ENV UV_LOCAL_BIN=$HOME/.local/bin
ENV USR_LOCAL_BIN=/usr/local/bin
ENV LOCAL_BIN=${HOME}/.local/bin
ENV PNPM_HOME=${HOME}/.local/share/pnpm
Expand Down Expand Up @@ -114,6 +114,7 @@ RUN foundryup
# Focused on core auditing tools: slither, mythril, crytic-compile
RUN uv tool install slither-analyzer && \
uv tool install mythril && \
uv tool install slither-lsp && \
uv tool install crytic-compile

# Install Hardhat and Solhint for Ethereum development
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/auditor/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"tintinweb.graphviz-interactive-preview",
"NomicFoundation.hardhat-solidity",
"Olympixai.olympix",
"trailofbits.contract-explorer",
"trailofbits.slither-vscode",
"tintinweb.chonky" // Chonky Agent
],
// VS Code settings optimized for auditing workflows
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/hardened/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh

# Update PATH environment for tool access
# Configure paths for Python, Node.js, and other tools
ENV UV_LOCAL_BIN=$HOME/.cargo/bin
ENV UV_LOCAL_BIN=$HOME/.local/bin
ENV USR_LOCAL_BIN=/usr/local/bin
ENV LOCAL_BIN=${HOME}/.local/bin
ENV PNPM_HOME=${HOME}/.local/share/pnpm
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/minimal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh

# Update PATH environment for tool access
# Configure paths for Python, Node.js, and other tools
ENV UV_LOCAL_BIN=$HOME/.cargo/bin
ENV UV_LOCAL_BIN=$HOME/.local/bin
ENV USR_LOCAL_BIN=/usr/local/bin
ENV LOCAL_BIN=${HOME}/.local/bin
ENV PNPM_HOME=${HOME}/.local/share/pnpm
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/paranoid/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh

# Update PATH environment for tool access
# Configure paths for Python, Node.js, and other tools
ENV UV_LOCAL_BIN=$HOME/.cargo/bin
ENV UV_LOCAL_BIN=$HOME/.local/bin
ENV USR_LOCAL_BIN=/usr/local/bin
ENV LOCAL_BIN=${HOME}/.local/bin
ENV PNPM_HOME=${HOME}/.local/share/pnpm
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ The project supports multiple devcontainer configurations for different use case
.devcontainer/
├── hardened/ # Hardened
├── airgapped/ # Enhanced security with flexibility
├── eth-security-toolbox/ # Based on Trail of Bits's dockerfile
├── codespaces # GitHub Codespaces Variant
├── auditor/ # Specialized audit environment
├── minimal/ # Essential tools only
└── legacy/ # Complete toolchain (original)
Expand All @@ -118,7 +120,7 @@ The project supports multiple devcontainer configurations for different use case
## Quick Start

1. **Choose your variant** based on your needs (see above)
2. **Navigate to the variant directory**: `cd .devcontainer/[variant-name]`
2. **Navigate to the devcontainer directory**: `cd .devcontainer`
3. **Open in VS Code**: `code .`
4. **Reopen in Container**: Select the appropriate devcontainer when prompted

Expand Down