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
A minimum memory of 256M works well for the `python:3.12` library
application. Without this, the application crashes
Signed-off-by: procub3r <[email protected]>
procub3r
changed the title
python:3.12: The run command in the README.md file doesn't work.python:3.12, python:3.10: The run command in the README.md file doesn't work.
Mar 30, 2024
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
The text was updated successfully, but these errors were encountered: