We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 90b29cf + e2afd7f commit f2729deCopy full SHA for f2729de
.devcontainer/devcontainer.json
@@ -1,5 +1,5 @@
1
{
2
- "image": "ghcr.io/asw101/rust-wasi-hello-devcontainer:latest",
+ "image": "ghcr.io/bytecodealliance/sample-wasi-http-rust-devcontainer:latest",
3
"features": {
4
//"ghcr.io/devcontainers/features/rust:1": {},
5
"ghcr.io/devcontainers/features/azure-cli:1": {}
.devcontainer/docker/Dockerfile
@@ -3,5 +3,8 @@ FROM mcr.microsoft.com/devcontainers/rust:${TAG}
USER vscode
6
-COPY ./scripts /tmp/scripts/
7
-RUN bash /tmp/scripts/install.sh
+# Install wasmtime
+RUN curl https://wasmtime.dev/install.sh -sSf | bash
8
+
9
+# Install cargo-component and wkg
10
+RUN cargo install cargo-component wkg
0 commit comments