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
as readme.md said You might have problems compiling with a machine or docker container with low resources. It has been tested with docker containers with 6 CPUs, 7.5 GM of memory and 2GB of swap.
I managed to build this project using low resource vm.
vm specification
1 core of Intel Xeon Processor (Icelake)
1G of ram
25G of disk
Debian 11
no swap by default
The method is very simple, just add a 8g swapfile
Please note, if your vm comes with swap partition or swap file, please swapoff first.
# allocate a 8G file
fallocate -l 8G /swapfile
# mount as swap
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
as readme.md said
You might have problems compiling with a machine or docker container with low resources. It has been tested with docker containers with 6 CPUs, 7.5 GM of memory and 2GB of swap.
I managed to build this project using low resource vm.
vm specification
The method is very simple, just add a 8g swapfile
Please note, if your vm comes with swap partition or swap file, please swapoff first.
once build done, remove the swap
Beta Was this translation helpful? Give feedback.
All reactions