diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6823a1d..4b9a2e6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,9 +1,15 @@ // 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/ubuntu { - "name": "Python 3", + "name": "Ubuntu", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/python:1-3.10-bookworm", + "image": "mcr.microsoft.com/devcontainers/base:jammy", + "features": { + "ghcr.io/devcontainers/features/python:1": { + "installTools": true, + "version": "3.10" + } + }, // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, @@ -14,7 +20,7 @@ ], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "pip3 install --user -r requirements.txt", + "postCreateCommand": "pip3 install --user -r requirements.txt" // Configure tool-specific properties. // "customizations": {},