faas/gateway/build.armhf.sh
John McCabe 89878f0c8a Migrate from alexellis org to openfaas
Note, not all `alexellis/github` references should be changed, there are
a number of repos which are not part of the openfaas org, this commit
excludes those.

Signed-off-by: John McCabe <john@johnmccabe.net>
2017-10-04 09:18:06 +01:00

14 lines
494 B
Bash
Executable File

#!/bin/sh
echo Building functions/gateway:build-armhf
docker build --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy \
-t functions/gateway:build-armhf . -f Dockerfile.build.armhf
docker create --name gateway_extract functions/gateway:build-armhf echo
docker cp gateway_extract:/go/src/github.com/openfaas/faas/gateway/app ./gateway
docker rm -f gateway_extract
echo Building functions/gateway:latest-armhf-dev
docker build -t functions/gateway:latest-armhf-dev .