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