unikraft / catalog

Unikraft Applications & Examples Catalog
23 stars 29 forks source link

`python:3.12`, `python:3.10`: The run command in the README.md file doesn't work. #110

Open procub3r opened 3 months ago

procub3r commented 3 months ago

Running the command as written in the README.md doesn't work.

kraft run -p 8080:8080 unikraft.org/python:3.12

This is because we are not providing enough memory. Adding a -M 256M flag makes it work!

The working command:

kraft run -p 8080:8080 -M 256M unikraft.org/python:3.12
procub3r commented 3 months ago

This is the case for the application python:3.10 as well. Providing -M 256M works!