|
1 | 1 | // For format details, see https://aka.ms/devcontainer.json. For config options, see the |
2 | | -// README at: https://github.com/devcontainers/templates/tree/main/src/python |
| 2 | +// README at: https://github.com/devcontainers/templates/tree/main/src/debian |
3 | 3 | { |
4 | | - "name": "Python 3", |
| 4 | + "name": "Debian", |
5 | 5 | // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile |
6 | | - "image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye", |
| 6 | + "image": "mcr.microsoft.com/devcontainers/base:bookworm", |
| 7 | + |
| 8 | + // Features to add to the dev container. More info: https://containers.dev/features. |
7 | 9 | "features": { |
8 | 10 | "ghcr.io/devcontainers/features/node:1": {}, |
9 | | - "ghcr.io/schlich/devcontainer-features/playwright:0": {}, |
10 | | - "ghcr.io/devcontainers-extra/features/typescript:2": {} |
| 11 | + "ghcr.io/devcontainers/features/python:1": {}, |
| 12 | + "ghcr.io/warrenbuckley/codespace-features/sqlite:1": {}, |
| 13 | + "ghcr.io/schlich/devcontainer-features/playwright:0": {} |
11 | 14 | }, |
12 | 15 | "postCreateCommand": "./scripts/setup-env.sh", |
| 16 | + "forwardPorts": [ |
| 17 | + 4321, |
| 18 | + 5100 |
| 19 | + ], |
| 20 | + // Configure tool-specific properties. |
13 | 21 | "customizations": { |
14 | 22 | "vscode": { |
15 | 23 | "extensions": [ |
16 | | - "ms-dotnettools.csharp", |
17 | | - "GitHub.copilot", |
18 | | - "GitHub.copilot-chat", |
| 24 | + "github.copilot", |
| 25 | + "github.copilot-chat", |
| 26 | + "ms-python.python", |
19 | 27 | "ms-python.vscode-pylance", |
20 | 28 | "svelte.svelte-vscode", |
21 | 29 | "astro-build.astro-vscode" |
22 | 30 | ] |
23 | | - } |
| 31 | + } |
24 | 32 | }, |
25 | 33 |
|
26 | | - // Features to add to the dev container. More info: https://containers.dev/features. |
27 | | - // "features": {}, |
28 | | - |
29 | | - // Use 'forwardPorts' to make a list of ports inside the container available locally. |
30 | | - "forwardPorts": [ |
31 | | - 4321, |
32 | | - 5100 |
33 | | - ], |
34 | | - |
35 | | - // Use 'postCreateCommand' to run commands after the container is created. |
36 | | - // "postCreateCommand": "pip3 install --user -r requirements.txt", |
37 | | - |
38 | | - // Configure tool-specific properties. |
39 | | - // "customizations": {}, |
40 | | - |
41 | 34 | // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. |
42 | 35 | // "remoteUser": "root" |
43 | 36 | } |
0 commit comments