mirror of
https://github.com/openfaas/faas.git
synced 2025-06-27 17:23:25 +00:00
8 lines
192 B
Bash
Executable File
8 lines
192 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/fwatchdog/fwatchdog ./
|
|
docker rm buildoutput
|
|
|