diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 97dcbf5..e3b054c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,43 +1,36 @@ // For format details, see https://aka.ms/devcontainer.json. For config options, see the -// README at: https://github.com/devcontainers/templates/tree/main/src/python +// README at: https://github.com/devcontainers/templates/tree/main/src/debian { - "name": "Python 3", + "name": "Debian", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye", + "image": "mcr.microsoft.com/devcontainers/base:bookworm", + + // Features to add to the dev container. More info: https://containers.dev/features. "features": { "ghcr.io/devcontainers/features/node:1": {}, - "ghcr.io/schlich/devcontainer-features/playwright:0": {}, - "ghcr.io/devcontainers-extra/features/typescript:2": {} + "ghcr.io/devcontainers/features/python:1": {}, + "ghcr.io/warrenbuckley/codespace-features/sqlite:1": {}, + "ghcr.io/schlich/devcontainer-features/playwright:0": {} }, "postCreateCommand": "./scripts/setup-env.sh", + "forwardPorts": [ + 4321, + 5100 + ], + // Configure tool-specific properties. "customizations": { "vscode": { "extensions": [ - "ms-dotnettools.csharp", - "GitHub.copilot", - "GitHub.copilot-chat", + "github.copilot", + "github.copilot-chat", + "ms-python.python", "ms-python.vscode-pylance", "svelte.svelte-vscode", "astro-build.astro-vscode" ] - } + } }, - // Features to add to the dev container. More info: https://containers.dev/features. - // "features": {}, - - // Use 'forwardPorts' to make a list of ports inside the container available locally. - "forwardPorts": [ - 4321, - 5100 - ], - - // Use 'postCreateCommand' to run commands after the container is created. - // "postCreateCommand": "pip3 install --user -r requirements.txt", - - // Configure tool-specific properties. - // "customizations": {}, - // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" }