Add docker images (#5)

This commit is contained in:
Nikolai Rodionov
2023-02-14 21:16:34 +00:00
committed by GitHub
parent 1a477790c4
commit aa3435ee7b
10 changed files with 140 additions and 19 deletions

15
scripts/download_for_arch.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
case $(uname -m) in
"arm64"|"aarch64")
PLATFORM="arm64"
;;
"x86_64")
PLATFORM="amd64"
;;
*)
echo "Unsuported target"
exit 1
;;
esac
echo "Downloading $2 from $1"
curl -LJO $1 $2