You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, wasmer-pack completely ignores volumes in the *.webc file you are generating code for. That means things like the python CLI won't work because they don't have access to the standard library.
To fix this, we need a couple things:
Copy the volume's contents into the generated package (maybe as a *.tar.gz file?)
Generate code that loads the volume file into a FileSystem object
Set up the generated code so this FileSystem is mounted into the WASI instance
The text was updated successfully, but these errors were encountered:
At the moment,
wasmer-pack
completely ignores volumes in the*.webc
file you are generating code for. That means things like thepython
CLI won't work because they don't have access to the standard library.To fix this, we need a couple things:
*.tar.gz
file?)The text was updated successfully, but these errors were encountered: