mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 00:36:46 +00:00
7 lines
188 B
Bash
Executable File
7 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker build -t watchdog:latest . -f Dockerfile.build
|
|
docker create --name buildoutput watchdog:latest
|
|
docker cp buildoutput:/go/src/app/app ./fwatchdog
|
|
docker rm buildoutput
|