forked from vamperst/fiap-cloud-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (32 loc) · 979 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
32 lines (32 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "FIAP Lab",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3"
},
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/aws-cli:1": {},
"ghcr.io/devcontainers/features/terraform:1": {},
"ghcr.io/devcontainers/features/node:1": {
"version": "lts"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"aws-scripting-guy.cform",
"hashicorp.terraform",
"github.copilot",
"redhat.vscode-yaml",
"fradolph.serverless-snippets"
]
}
},
"postCreateCommand": "chmod +x /workspaces/fiap-cloud-engineering/.devcontainer/script.sh && bash /workspaces/fiap-cloud-engineering/.devcontainer/script.sh",
"settings": {
"terminal.integrated.defaultProfile.linux": "bash"
}
}