-
Notifications
You must be signed in to change notification settings - Fork 989
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* attempt at dual mac builds * add initial devcontainer * correct dependency import
- Loading branch information
1 parent
118f885
commit 6c01204
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Rust latest | ||
FROM mcr.microsoft.com/devcontainers/rust:latest | ||
|
||
# Install Required Dependencies | ||
RUN apt-get -qq update | ||
RUN apt-get install -y build-essential cmake git libgit2-dev clang libncurses5-dev libncursesw5-dev zlib1g-dev pkg-config libssl-dev llvm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "rust-grin-devcontainer", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"context": ".." | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"dbaeumer.vscode-eslint", | ||
"vadimcn.vscode-lldb", | ||
"tamasfe.even-better-toml", | ||
"rust-lang.rust-analyzer", | ||
"esbenp.prettier-vscode", | ||
"github.copilot", | ||
"github.copilot-chat" | ||
] | ||
} | ||
} | ||
} |