devcontainer.json

This commit is contained in:
Kiki yunaiki 2025-01-08 10:01:11 +07:00 committed by GitHub
parent 33284aa27f
commit 1ec3d701d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,15 @@
{
"name": "Ubuntu Devcontainer",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"postCreateCommand": "sudo apt update && sudo apt upgrade -y",
"features": {
"docker-in-docker": "latest"
},
"extensions": [
"ms-python.python",
"dbaeumer.vscode-eslint"
]
}