mirror of
https://github.com/openfaas/faas.git
synced 2025-06-14 03:06:46 +00:00
- fix javascript deserialization in UI with json response - create swarm watcher to monitor replicas
11 lines
490 B
Bash
Executable File
11 lines
490 B
Bash
Executable File
#!/bin/sh
|
|
echo Building functions/gateway:build
|
|
|
|
docker build --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy \
|
|
-t functions/gateway:build . -f Dockerfile.build && \
|
|
docker create --name gateway_extract functions/gateway:build && \
|
|
docker cp gateway_extract:/go/src/github.com/alexellis/faas/gateway/app ./gateway && \
|
|
docker rm -f gateway_extract && \
|
|
echo Building functions/gateway:latest && \
|
|
docker build --no-cache -t functions/gateway:latest-dev .
|