add dev container (#167)

* add dev container

* update working folder
This commit is contained in:
Boshi Lian 2023-07-27 08:07:04 -07:00 committed by GitHub
parent 72fc5488af
commit f5ea4f1143
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
.devcontainer.json Normal file
View file

@ -0,0 +1,21 @@
{
"name": "e2e dev env",
"dockerComposeFile": "e2e/docker-compose.yml",
"service": "testrunner",
"containerEnv": {
"SSHPIPERD_DEBUG": "1"
},
"workspaceFolder": "/src",
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
"ghcr.io/devcontainers/features/go:1" : {},
"ghcr.io/guiyomh/features/golangci-lint:0": {}
},
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot"
]
}
}
}