mirror of
https://github.com/openfaas/faas.git
synced 2025-06-10 17:26:47 +00:00
8 lines
190 B
Bash
Executable File
8 lines
190 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export TAG="latest-dev"
|
|
echo Building functions/gateway:$TAG
|
|
|
|
docker build --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy \
|
|
-t functions/gateway:$TAG .
|