We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db5600c commit b22920eCopy full SHA for b22920e
2 files changed
.devcontainer/devcontainer.json
@@ -1,4 +1,10 @@
1
{
2
+ // "image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu",
3
+ // "features": {
4
+ // "docker-in-docker": "latest"
5
+ // },
6
+ // "remoteUser": "vscode",
7
+ "postCreateCommand": ".devcontainer/post-create.sh",
8
"customizations": {
9
"codespaces": {
10
"repositories": {
@@ -8,7 +14,5 @@
14
}
15
16
},
11
- "features": {
12
- "docker-in-docker": "latest"
13
- }
17
+ "extensions": ["mortenhenriksen.perl-debug", "d9705996.perl-toolbox"]
18
.devcontainer/post-create.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+set -xe
+
+sudo apt update
+sudo apt install -y make git zip libio-socket-ssl-perl
+sudo apt clean
0 commit comments