We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4b6b0c commit 5b0cf74Copy full SHA for 5b0cf74
.devcontainer/devcontainer.json
@@ -1,4 +1,19 @@
1
{
2
"name": "Basic Dev Environment",
3
- "image": "mcr.microsoft.com/devcontainers/base:debian"
+ "image": "mcr.microsoft.com/devcontainers/base:debian",
4
+ "postCreateCommand": ".devcontainer/postCreate.sh",
5
+ "features": {
6
+ "ghcr.io/devcontainers/features/python:1": {
7
+ "installTools": true,
8
+ "version": "3.10"
9
+ }
10
+ },
11
+ "customizations": {
12
+ "vscode": {
13
+ "extensions": [
14
+ "ms-python.python",
15
+ "ms-python.debugpy"
16
+ ]
17
18
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