-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Celeste
authored and
Celeste
committed
Oct 22, 2024
1 parent
5a488ff
commit 7196ca1
Showing
14 changed files
with
638 additions
and
343 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,8 @@ | ||
FROM mcr.microsoft.com/devcontainers/rust:1-1-bookworm | ||
|
||
RUN apt-get update \ | ||
&& curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash \ | ||
&& apt-get install -y git-lfs libssl-dev pkg-config | ||
|
||
USER vscode | ||
RUN curl -fsSL https://bun.sh/install | bash |
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,25 @@ | ||
{ | ||
"name": "Rust", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"workspaceMount": "", | ||
"runArgs": [ | ||
"--userns=keep-id:uid=1000,gid=1000", | ||
"--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z" | ||
], | ||
"containerUser": "vscode", | ||
"updateRemoteUserUID": true, | ||
"containerEnv": { | ||
"HOME": "/home/vscode" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"tauri-apps.tauri-vscode", | ||
"ms-azuretools.vscode-docker", | ||
"BarbossHack.crates-io" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.