Docker provides a simple way to build a golang project, without needing to install the toolchain:
docker run -v $PWD:/go/bin golang:stretch go get -u github.com/pressly/goose/cmd/goose
The built binary should appear in the pwd.
Docker provides a simple way to build a golang project, without needing to install the toolchain:
docker run -v $PWD:/go/bin golang:stretch go get -u github.com/pressly/goose/cmd/goose
The built binary should appear in the pwd.