1 Star 0 Fork 0

KeyBoxDZD/Gososerial

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 571 Bytes
一键复制 编辑 原始数据 按行查看 历史
一清 提交于 2022-01-18 00:52 . first commit
FROM golang:latest
ENV GOPROXY https://mirrors.aliyun.com/goproxy/
ENV GO111MODULE on
WORKDIR /go/cache
ADD go.mod .
ADD go.sum .
RUN go mod download
WORKDIR /go/release
ADD . .
RUN GOOS=linux CGO_ENABLED=0 GOARCH=amd64 go build -ldflags="-s -w" -installsuffix cgo -o gososerial-linux main.go
RUN GOOS=windows CGO_ENABLED=0 GOARCH=amd64 go build -ldflags="-s -w" -installsuffix cgo -o gososerial-windows.exe main.go
RUN GOOS=darwin CGO_ENABLED=0 GOARCH=amd64 go build -ldflags="-s -w" -installsuffix cgo -o gososerial-darwin main.go
CMD ["bash","-c","tail -f /dev/null"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/keyboxdzd/Gososerial.git
git@gitee.com:keyboxdzd/Gososerial.git
keyboxdzd
Gososerial
Gososerial
master

搜索帮助