11 lines
138 B
Bash
11 lines
138 B
Bash
|
#!/bin/sh -x
|
||
|
|
||
|
set -e
|
||
|
apt update
|
||
|
apt upgrade -y
|
||
|
apt install -y git
|
||
|
|
||
|
git clone https://github.com/openfaas/faasd
|
||
|
cd faasd
|
||
|
./hack/install.sh
|