Skip to content

Commit 6ab10f9

Browse files
[mq] working branch - merge cdbfa06 on top of main at c89b6df
{"baseBranch":"main","baseCommit":"c89b6dfb938f3df84cdf501c8805ad09c32838d1","createdAt":"2026-02-03T03:11:11.637037Z","headSha":"cdbfa064463c6894a362c635b2113c7bc77c06a1","id":"e2f9bec4-6c44-49e9-9d8f-42de1a4ba43c","priority":"200","pullRequestNumber":"1501","queuedAt":"2026-02-03T03:11:11.635934Z","status":"STATUS_QUEUED"}
2 parents 57f45ea + cdbfa06 commit 6ab10f9

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/rust
3+
{
4+
"name": "Rust (Alpine x86_64)",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/base:alpine", // more images at https://hub.docker.com/r/microsoft/devcontainers-base
7+
// Force x86_64 architecture (for testing on ARM Macs)
8+
"runArgs": [
9+
"--network=host",
10+
"--platform=linux/amd64"
11+
],
12+
// Use 'mounts' to make the cargo cache persistent in a Docker Volume.
13+
"mounts": [
14+
{
15+
"source": "devcontainer-cargo-cache-alpine-x86_64-${devcontainerId}",
16+
"target": "/usr/local/cargo",
17+
"type": "volume"
18+
}
19+
],
20+
"onCreateCommand": "sudo apk add --no-cache build-base rust cargo cargo-zsh-completion rust-src rustfmt cbindgen patchelf cmake",
21+
"customizations": {
22+
"vscode": {
23+
"extensions": [
24+
"rust-lang.rust-analyzer",
25+
"vadimcn.vscode-lldb",
26+
"tamasfe.even-better-toml"
27+
]
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)