You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/tag Build is passing
Details
|
8 months ago | |
---|---|---|
.drone.yml | 2 years ago | |
Dockerfile | 8 months ago | |
README.md | 8 months ago |
README.md
Usage
This assumes that you are using go mod to build.
docker run --rm -v "$PWD":/myrepo -w /myrepo lunny/centos-go:latest go build
With a goproxy env
docker run --rm -v "$PWD":/myrepo -w /myrepo -e GOPROXY=goproxy.io lunny/centos-go:latest go build
With a shared go mod cache in host
docker run --rm -v "$PWD":/myrepo -v ~/go/pkg/mod:/modcache -w /myrepo -e GOMODCACHE=/modcache -e GOPROXY=goproxy.io lunny/centos-go:latest go build