This commit is contained in:
Elijah McMorris 2023-06-19 22:04:13 +00:00 committed by NexVeridian
parent 1bfbbaa826
commit 0de1bcb725
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
6 changed files with 26 additions and 17857 deletions

View file

@ -2,7 +2,7 @@
FROM mcr.microsoft.com/devcontainers/rust:bookworm
RUN apt-get update && \
apt install -y build-essential xz-utils musl-tools musl-dev gcc-multilib pkg-config libssl-dev mold
apt install -y build-essential xz-utils musl-tools musl-dev gcc-multilib pkg-config libssl-dev clang mold
RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[0-9.]+') && \
curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz" && \

View file

@ -22,6 +22,11 @@
"source": "devcontainer-cargo-cache-${containerWorkspaceFolderBasename}",
"target": "/usr/local/cargo",
"type": "volume"
},
{
"source": "${localWorkspaceFolderBasename}-target",
"target": "${containerWorkspaceFolder}/target",
"type": "volume"
}
],
// Features to add to the dev container. More info: https://containers.dev/features.
@ -56,13 +61,9 @@
"rust-lang.rust-analyzer",
"mutantdino.resourcemonitor",
"christian-kohler.path-intellisense",
"Swellaby.vscode-rust-test-adapter",
"Gruntfuggly.todo-tree",
"ms-azuretools.vscode-docker",
"redhat.vscode-yaml",
"GitHub.copilot-nightly",
"GitHub.copilot-chat"
// "GitHub.copilot"
"redhat.vscode-yaml"
]
}
}