Files
fn-serverless/build.ps1
Carlos C d5fb1afda7 Revert "Assert License (#224)"
This reverts commit a61c4dab78.
2016-11-06 09:25:12 -08:00

9 lines
302 B
PowerShell

# Build script for PowerShell
$ErrorActionPreference = "Stop"
$pwd = (Resolve-Path .\).Path
Write-Host "pwd: " $pwd
docker run --rm -v ${pwd}:/go/src/github.com/iron-io/functions -w /go/src/github.com/iron-io/functions iron/go:dev go build -o functions-alpine
docker build -t iron/functions:latest .