vmware-labs / webassembly-language-runtimes

Wasm Language Runtimes provides popular language runtimes (Ruby, Python, …) precompiled to WebAssembly that are tested for compatibility and kept up to date when new versions of upstream languages are released
Apache License 2.0
327 stars 27 forks source link

publish container images for the other interpreters #100

Open codefromthecrypt opened 1 year ago

codefromthecrypt commented 1 year ago

Is your feature request related to a problem? Please describe.

The python image is great, as interpreters can be a base layer a user can FROM to add their scripts and change the CMD (or worst case ENTRYPOINT). This takes the best of docker/OCI as you can cache the base layer and also know it is in use (vs knowing nothing about the python under if the wasm is repackaged).

Can you please publish OCI image packages for the other interpreters?

Describe the solution you'd like

packages like ghcr.io/vmware-labs/python-wasm:3.11.3 for php, ruby and any other interpreter handled in the future here.

Describe alternatives you've considered

stick with wasm, except it doesn't explain a clean way of dealing with layers. Basically the end user must be able to control the host runtime to change mounts, or at least be able to affect them. However, the host may not want to expose that. It is cleaner to allow OCI as the whole thing can be configured and validated easier.

Additional context

No response