We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e319de4 commit 1d43479Copy full SHA for 1d43479
.devcontainer/Dockerfile
@@ -0,0 +1,7 @@
1
+FROM mcr.microsoft.com/devcontainers/rust:1-bookworm
2
+
3
+# Install Rust components
4
+RUN . /usr/local/cargo/env && rustup component add rustfmt clippy rust-analyzer
5
6
+# Install cargo tools (this is the slow part)
7
+RUN . /usr/local/cargo/env && cargo install cargo-watch cargo-edit cargo-outdated
.devcontainer/devcontainer.json
@@ -0,0 +1,10 @@
+{
+ "name": "devcontainer-sync-cli",
+ "build": {
+ "dockerfile": "Dockerfile"
+ },
+ "features": {
+ "ghcr.io/anthropics/devcontainer-features/claude-code:latest": {},
8
+ "ghcr.io/devcontainers/features/node:1": {}
9
+ }
10
+}
0 commit comments