We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9d814e commit 1936ccdCopy full SHA for 1936ccd
.devcontainer/Dockerfile
@@ -0,0 +1,6 @@
1
+# Rust latest
2
+FROM mcr.microsoft.com/devcontainers/rust:latest
3
+
4
+# Install Required Dependencies
5
+RUN apt-get -qq update
6
+RUN apt-get install build-essential cmake git libgit2-dev clang libncurses5-dev libncursesw5-dev zlib1g-dev pkg-config libssl-dev llvm
.devcontainer/devcontainer.json
@@ -0,0 +1,20 @@
+{
+ "name": "rust-grin-devcontainer",
+ "build": {
+ "dockerfile": "Dockerfile",
+ "context": ".."
+ },
7
+ "customizations": {
8
+ "vscode": {
9
+ "extensions": [
10
+ "dbaeumer.vscode-eslint",
11
+ "vadimcn.vscode-lldb",
12
+ "tamasfe.even-better-toml",
13
+ "rust-lang.rust-analyzer",
14
+ "esbenp.prettier-vscode",
15
+ "github.copilot",
16
+ "github.copilot-chat"
17
+ ]
18
+ }
19
20
0 commit comments