加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 448 Bytes
一键复制 编辑 原始数据 按行查看 历史
雨化田 提交于 2022-04-22 05:10 . 容器方式启动项目达到99%
FROM golang:1.16.15-buster as gobuild
WORKDIR $GOPATH/src/gitee.com/cristiane/micro-mall-pay
COPY . .
ENV GOPROXY=https://goproxy.cn,https://goproxy.io,direct
ENV GO111MODULE=on
RUN bash ./build.sh
# FROM alpine:latest as gorun
FROM centos:latest as gorun
WORKDIR /www/
COPY --from=gobuild /go/src/gitee.com/cristiane/micro-mall-pay/micro-mall-pay .
COPY --from=gobuild /go/src/gitee.com/cristiane/micro-mall-pay/etc ./etc
CMD ["./micro-mall-pay"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化