We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1ecbdb8 + 193afe3 commit 181452aCopy full SHA for 181452a
.devcontainer/Dockerfile
@@ -0,0 +1,4 @@
1
+FROM mcr.microsoft.com/powershell:7.3-alpine-3.17
2
+
3
+# add git
4
+RUN apk add --no-cache git
.devcontainer/devcontainer.json
@@ -1,10 +1,18 @@
{
"name": "PowerShell",
- "image": "mcr.microsoft.com/powershell:latest",
- "settings": {
5
- "terminal.integrated.shell.linux": "/usr/bin/pwsh"
+ "build": {
+ "dockerfile": "Dockerfile"
6
},
7
- "extensions": [
8
- "ms-vscode.powershell"
9
- ]
+ "customizations": {
+ "settings": {
+ "terminal.integrated.shell.linux": "/usr/bin/pwsh"
+ },
10
+ "vscode": {
11
+ "extensions": [
12
+ "ms-azuretools.vscode-docker",
13
+ "ms-vscode.powershell",
14
+ "GitHub.copilot"
15
+ ]
16
+ }
17
18
}
0 commit comments