We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd31a7b commit d1f01a3Copy full SHA for d1f01a3
.devcontainer/devcontainer.json
@@ -1,4 +1,19 @@
1
{
2
"name": "Universal - Latest",
3
- "image": "mcr.microsoft.com/devcontainers/universal:latest"
+ "image": "mcr.microsoft.com/devcontainers/universal:latest",
4
+ "features": {
5
+ "ghcr.io/devcontainers/features/python:1": {
6
+ "installTools": true,
7
+ "version": "3.10"
8
+ }
9
+ },
10
+ "customizations": {
11
+ "vscode": {
12
+ "extensions": [
13
+ "ms-python.python",
14
+ "ms-python.debugpy"
15
+ ]
16
17
18
+ "postCreateCommand": "bash .devcontainer/postCreate.sh"
19
}
.devcontainer/postCreate.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+sudo apt-get update
+sudo apt-get install sl
+echo "export PATH=\$PATH:/usr/games" >> ~/.bashrc
+echo "export PATH=\$PATH:/usr/games" >> ~/.zshrc
0 commit comments