From f5ea4f1143df7a2de1a3aabc5018f656aa41e54d Mon Sep 17 00:00:00 2001 From: Boshi Lian Date: Thu, 27 Jul 2023 08:07:04 -0700 Subject: [PATCH] add dev container (#167) * add dev container * update working folder --- .devcontainer.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .devcontainer.json diff --git a/.devcontainer.json b/.devcontainer.json new file mode 100644 index 00000000..2edcf7b6 --- /dev/null +++ b/.devcontainer.json @@ -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" + ] + } + } +} \ No newline at end of file