Files
2018-08-02 14:10:13 +02:00

11 lines
146 B
Bash
Executable File

#!/bin/bash
set -e
export GOOS=linux
export GOARCH=386
go get -u github.com/golang/dep/cmd/dep
dep ensure
go build
docker build -t drone-helm .