Deb: create Ubuntu 20.04 tarball and deb

This commit is contained in:
Dmitry Maksyoma
2021-01-19 22:44:32 +13:00
parent a4369e8897
commit 35cf095a31
8 changed files with 92 additions and 11 deletions

9
builder/os_ver_cli.sh Normal file
View File

@@ -0,0 +1,9 @@
default_os=ubuntu
default_os_ver=18.04
os=${1:-$default_os}
os_ver=${2:-$default_os_ver}
os_ver_dockerfile=`echo $os_ver | sed 's/\.//g'`
os_image="$os:$os_ver"
echo "Building for $os_image"