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 02df0cf commit 53e33ecCopy full SHA for 53e33ec
.devcontainer/docker/Dockerfile
@@ -0,0 +1,5 @@
1
+ARG TAG="2"
2
+FROM mcr.microsoft.com/devcontainers/universal:${TAG}
3
+
4
+COPY ./scripts /tmp/scripts/
5
+RUN bash /tmp/scripts/install.sh
.devcontainer/docker/devcontainer.json
@@ -0,0 +1,15 @@
+{
+ "build": { "dockerfile": "Dockerfile" },
+ //"image": "mcr.microsoft.com/devcontainers/universal:2",
+ "features": {
+ "ghcr.io/devcontainers/features/rust:1": {},
6
+ "ghcr.io/devcontainers/features/azure-cli:1": {}
7
+ },
8
+ "customizations": {
9
+ "vscode": {
10
+ "extensions": [
11
+ "rust-lang.rust-analyzer"
12
+ ]
13
+ }
14
15
+}
0 commit comments