Kohei Tokunaga
Kohei Tokunaga
@adamnovak For container on WASI on browser configuration, you can provide file or directories as pre-opened fds to the container . - Example1: w/ [browser_wasi_shim](https://github.com/bjorn3/browser_wasi_shim) : https://github.com/ktock/container2wasm/blob/31f6db882faad0a450c56ae5966796c93e2c4520/examples/wasi-browser/htdocs/worker.js#L25-L33 - Example2: w/...
> a way to forward the wasm workload execution straight to the browser SGTM. We now have networking on browser so I believe we can send wasm binaries from the...
Is this duplication of #191 ? EDIT: I've added some comments on that thread.
> tweak storage size (through Docker?) Could you elaborate what "storage" means? The storage usage by docker during build? Or the output Wasm image size? Or the disk size of...
We rely on `docker build` for generating wasm images so it sounds like Docker's concern. If it's ok to remove your Docker build cache, Docker provides `docker builder prune` for...
Yes. If needed, we can fix c2w to optionally use some flags of `docker build` for limiting resource usage: https://docs.docker.com/engine/reference/commandline/build/#options
Could you provide steps to reproduce?
Could you provide a full reproducer? Does the conversion work for other Dockerfiles? And I'm curious why `COPY . .` is included in the Dockerfile. It looks like `COPY requirements.txt...
What is the contents of requirements.txt?
@NoahJinnn I can't reproduce the issue. The conversion seems to work on my side. Added the log at the following (used container2wasm v0.2.3). What error are you getting after removing...