You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
373 B
15 lines
373 B
#!/bin/sh -x
|
|
set -e
|
|
|
|
# My FAAS is arm64, so need to install this to cross-compile
|
|
docker run --rm --privileged \
|
|
multiarch/qemu-user-static \
|
|
--reset -p yes
|
|
|
|
# Build and deploy
|
|
if [ ! -d templates]
|
|
then
|
|
faas-cli template store pull python3-http
|
|
fi
|
|
faas-cli publish -f nombres.yml --platforms linux/arm64 --build-arg 'TEST_ENABLED=false'
|
|
faas-cli deploy -f nombres.yml
|
|
|