File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
.devcontainer/portability-archlinux Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ FROM archlinux
2
+ RUN pacman -Syu --noconfirm bash git python
Original file line number Diff line number Diff line change 1
1
// See https://aka.ms/devcontainer.json for format details.
2
2
{
3
3
"name" : " archlinux" ,
4
- "image" : " archlinux" ,
4
+ // "image": "archlinux",
5
+ "dockerFile" : " Dockerfile" ,
5
6
"onCreateCommand" : " .devcontainer/onCreate-meson.sh || true" ,
6
7
"features" : {
7
- "ghcr.io/devcontainers/features/git" : {},
8
- "ghcr.io/devcontainers/features/python:1" : {},
8
+ // Git feature is not compatible with Arch Linux, so we install it manually in the Dockerfile
9
+ // https://github.com/devcontainers/features/issues/824
10
+ // "ghcr.io/devcontainers/features/git": {},
11
+ // "ghcr.io/devcontainers/features/python:1": {},
9
12
"../uv" : {
10
13
"version" : " latest"
11
14
}
You can’t perform that action at this time.
0 commit comments