使用临时容器编译 go
分别映射 /app
和 /go
目录。示例:
docker run --rm -it \
-v /home/txl/pro:/app \
-v /home/txl/gopath:/go \
-w /app \
-e CGO_ENABLED=0 \
-e GOPROXY=https://goproxy.cn \
golang:1.19-alpine \
go build -o build/reviews reviews.go
分别映射 /app
和 /go
目录。示例:
docker run --rm -it \
-v /home/txl/pro:/app \
-v /home/txl/gopath:/go \
-w /app \
-e CGO_ENABLED=0 \
-e GOPROXY=https://goproxy.cn \
golang:1.19-alpine \
go build -o build/reviews reviews.go