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 dc84572 commit ee763a8Copy full SHA for ee763a8
.devcontainer/devcontainer.json
@@ -1,4 +1,18 @@
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/davzucky/devcontainers-features-wolfi/python:1": {
6
+ "pythonVersion": "3.10"
7
+ }
8
+ },
9
+ "postCreateCommand": "bash .devcontainer/postCreate.sh",
10
+ "customizations": {
11
+ "vscode": {
12
+ "extensions": [
13
+ "ms-python.python",
14
+ "ms-python.debugpy"
15
+ ]
16
17
18
}
.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