We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 022c9e6 commit 27bc97aCopy full SHA for 27bc97a
chapter02/hello_world/Dockerfile
@@ -1,7 +1,5 @@
1
FROM rust:latest AS builder
2
3
-LABEL org.opencontainers.image.source https://github.com/danbugs/serverside-wasm-book-code
4
-
5
RUN USER=root cargo new --bin hello_world_host
6
WORKDIR /hello_world_host
7
chapter02/hello_world/README.md
@@ -10,6 +10,7 @@ cargo build --target wasm32-unknown-unknown --release
10
## How to run the host?
11
12
```bash
13
+# from the `hello_world_guest/` directory
14
docker run --rm -v "$(pwd):/data" danstaken/hello_world_host:latest /data/hello_world_guest.wasm 'Dan'
15
```
16
0 commit comments