diff --git a/build.sh b/build.sh index b868ed8..ff17d95 100755 --- a/build.sh +++ b/build.sh @@ -1,8 +1,16 @@ +#!/bin/bash + +# We add all kernel modules, then use udev to load them dynamically +# we leave 30mb empty space at the end of each partition + +mkdir -p $PWD/output + docker run --rm -it \ + --security-opt seccomp=unconfined \ -v $PWD/output:/output -v $PWD/input:/input \ -e "DEFAULT_KERNEL_MODULES=*" \ - -e "SIZE_ROOT_PART=750M" \ - -e "SIZE_ROOT_FS=700M" \ + -e "SIZE_ROOT_PART=7680M" \ + -e "SIZE_ROOT_FS=7650M" \ -e "DEFAULT_TIMEZONE=Europe/Budapest" \ - builder # <- don't forgetti to build this + builder ${@} # <- don't forgetti to build this