Skip to content

Commit

Permalink
feat: add configuration for Visual Studio Code (#3309)
Browse files Browse the repository at this point in the history
---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
  • Loading branch information
kichik committed Jan 17, 2022
1 parent d361c7b commit 3edf74c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .devcontainer.json
@@ -0,0 +1,21 @@
{
"name": "Dev Container Definition - AWS JSII",
"build": {
"dockerfile": "superchain/Dockerfile",
"context": ".",
"target": "superchain",
"args": {
"BUILDPLATFORM": "linux/amd64",
"TARGETPLATFORM": "linux/amd64",
"BUILD_TIMESTAMP": "unknown",
"REGISTRY": "docker.io/library",
"COMMIT_ID": "head"
}
},
"containerUser": "root",
"remoteUser": "root",
"postCreateCommand": "yarn install && yarn build",
"extensions": [
"dbaeumer.vscode-eslint@2.1.5"
]
}
3 changes: 3 additions & 0 deletions .dockerignore
@@ -0,0 +1,3 @@
node_modules
.env
maven-repo

0 comments on commit 3edf74c

Please sign in to comment.