Use Docker for WasmEdge app development

    Here is the and Docker Hub image.

    1. $ docker run --rm -v $(pwd):/app -it wasmedge/appdev_aarch64:0.9.0
    2. (docker) #

    The WasmEdge application development Docker image installs the following components.

    • WasmEdge CLI and shared libraries
    • WasmEdge with Tensorflow extension CLI and libraries (x86_64 only)
    • Golang
    • Rust
    • Examples in the folder

    Use AOT to run it much faster.

    1. $ wasmedgec hello.wasm hello.wasm
    2. $ wasmedge hello.wasm world
    3. hello

    Run these commands to build and publish the appdev Docker images.

    1. docker build -t wasmedge/appdev_x86_64:0.9.0 -f Dockerfile.appdev_x86_64 ./

    Build on an ARM64 / aarch64 machine