feat: Update devcontainer setup with Dockerfile and improved script for pre-commit hooks
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m37s

This commit is contained in:
2025-12-26 01:17:16 +01:00
parent eb3a74b709
commit 4c12baef28
3 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
# .devcontainer/Dockerfile
FROM mcr.microsoft.com/devcontainers/javascript-node:1-20-bullseye
# CACHED INSTALLATION:
# Install global NPM packages here. This creates a cached Docker layer.
# We use 'su node' to ensure permissions are correct for the non-root user.
RUN su node -c "npm install -g @google/gemini-cli"