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 59523d2 commit 4036be6Copy full SHA for 4036be6
.devcontainer/Dockerfile
@@ -0,0 +1,3 @@
1
+ARG VARIANT="1"
2
+FROM mcr.microsoft.com/devcontainers/rust:${VARIANT}
3
+RUN apt update && apt install -y cmake
.devcontainer/devcontainer.json
@@ -0,0 +1,16 @@
+{
+ "name": "Rust",
+ "build": {
4
+ "dockerfile": "Dockerfile",
5
+ "args": { "VARIANT": "1" }
6
+ },
7
+ "customizations": {
8
+ "vscode": {
9
+ "extensions": [
10
+ "EditorConfig.EditorConfig",
11
+ "rust-lang.rust-analyzer"
12
+ ]
13
+ }
14
15
+ "remoteUser": "vscode"
16
+}
0 commit comments