.devcontainer.json•527 B
{
"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu-24.04",
"features": {
"ghcr.io/devcontainers/features/python:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers/features/ruby:1": {},
"ghcr.io/devcontainers-extra/features/uv:1": {}
},
"hostRequirements": {
"cpus": 2,
"memory": "8gb"
},
"postCreateCommand": "sudo apt update && sudo apt install -y $(uvx bindep -b); uvx pre-commit install"
}