forked from piano-man/DPIFuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
45 lines (38 loc) · 1.39 KB
/
devcontainer.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
{
"name": "DPIFuzz Devcontainer",
"build": {
"context": "..",
"dockerfile": "../Dockerfile.dev"
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
"onCreateCommand": "pip3 install -r /go/src/github.com/QUIC-Tracker/quic-tracker/diff-fuzzing/evaluation/requirements.txt",
"postCreateCommand": "go get -v || true; cd /go/src/github.com/mpiraux/pigotls; make; cd /go/src/github.com/mpiraux/ls-qpack-go; go mod download github.com/davecgh/go-spew; make",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"settings": {
"go.useLanguageServer": true
},
"extensions": [
"golang.Go",
"GitHub.copilot",
"IBM.output-colorizer",
"ms-toolsai.jupyter",
"ms-python.python"
]
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"workspaceMount": "source=${localWorkspaceFolder},target=/go/src/github.com/QUIC-Tracker/quic-tracker,type=bind",
"workspaceFolder": "/go/src/github.com/QUIC-Tracker/quic-tracker",
"remoteUser": "vscode"
}