mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 16:56:47 +00:00
11 lines
438 B
Bash
Executable File
11 lines
438 B
Bash
Executable File
#!/bin/sh
|
|
echo Building functions/webhookstash:build
|
|
|
|
docker build --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -t functions/webhookstash:build . -f Dockerfile.build && \
|
|
docker create --name hook_extract functions/webhookstash:build
|
|
docker cp hook_extract:/go/src/app/app ./app
|
|
docker rm -f hook_extract
|
|
|
|
echo Building functions/webhookstash:latest
|
|
docker build --no-cache -t functions/webhookstash:latest .
|