File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed
Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " Universal - Latest" ,
3- "image" : " mcr.microsoft.com/devcontainers/universal:latest"
3+ "image" : " mcr.microsoft.com/devcontainers/universal:latest" ,
4+ "features" : {
5+ "ghcr.io/stu-bell/devcontainer-features/python:0" : {
6+ "apt_get" : true ,
7+ "installTools" : true ,
8+ "min_python_version" : " 3.15"
9+ }
10+ },
11+ "customizations" : {
12+ "vscode" : {
13+ "extensions" : [
14+ " ms-python.python" ,
15+ " ms-python.debugpy"
16+ ]
17+ }
18+ },
19+ "postCreateCommand" : " bash .devcontainer/postCreate.sh"
420}
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ sudo apt-get update
4+ sudo apt-get install sl
5+ echo " export PATH=\$ PATH:/usr/games" >> ~ /.bashrc
6+ echo " export PATH=\$ PATH:/usr/games" >> ~ /.zshrc
You can’t perform that action at this time.
0 commit comments