We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62e1c72 commit 238588aCopy full SHA for 238588a
.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