mirror of
https://github.com/ipedrazas/drone-helm.git
synced 2026-06-04 10:15:19 +08:00
11 lines
146 B
Bash
Executable File
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 .
|