Skip to content

Commit

Permalink
feat: updated to http-body stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Celeste authored and Celeste committed Oct 22, 2024
1 parent 5a488ff commit 7196ca1
Show file tree
Hide file tree
Showing 14 changed files with 638 additions and 343 deletions.
8 changes: 8 additions & 0 deletions .devcontainer/Dockerfile
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
25 changes: 25 additions & 0 deletions .devcontainer/devcontainer.json
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"
]
}
}
}
Loading

0 comments on commit 7196ca1

Please sign in to comment.