Skip to content

Commit 4342204

Browse files
committed
Update devcontainer configuration to use Debian base image and adjust features
1 parent c8957e2 commit 4342204

1 file changed

Lines changed: 9 additions & 27 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 9 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,22 @@
11
// 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
33
{
4-
"name": "Python 3",
4+
"name": "Debian",
55
// 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.
79
"features": {
810
"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": {}
1114
},
1215
"postCreateCommand": "./scripts/setup-env.sh",
13-
"customizations": {
14-
"vscode": {
15-
"extensions": [
16-
"ms-dotnettools.csharp",
17-
"GitHub.copilot",
18-
"GitHub.copilot-chat",
19-
"ms-python.vscode-pylance",
20-
"svelte.svelte-vscode",
21-
"astro-build.astro-vscode"
22-
]
23-
}
24-
},
25-
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.
3016
"forwardPorts": [
3117
4321,
3218
5100
33-
],
34-
35-
// Use 'postCreateCommand' to run commands after the container is created.
36-
// "postCreateCommand": "pip3 install --user -r requirements.txt",
37-
19+
]
3820
// Configure tool-specific properties.
3921
// "customizations": {},
4022

0 commit comments

Comments
 (0)