Skip to content

how to define/run wasmtime serve command in OCI image. #16

@BhavinPrajapti

Description

@BhavinPrajapti

I have followed your steps and it it working fine locally. i can run hello_wasi_http.wasm on my local machine with below command.
wasmtime serve /hello_wasi_http.wasm

I have configured minikube cluster with wasmtime runtime. for normal helloworld below OCI image is working fine.

FROM scratch
ADD hello-wasm.wasm /
CMD ["/hello-wasm.wasm"]

but now i want to build image with http serve. then how can I define docker file with serve?

FROM scratch

Add the Wasm file to the container

ADD hello_wasi_http.wasm /hello_wasi_http.wasm

Expose port 8080

EXPOSE 8080

Start the Wasmtime server

CMD ["wasmtime", "serve", "/hello_wasi_http.wasm"]

i tried this one but not working. can you please tell how can I access http server ?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions