15 Star 125 Fork 63

wj596/go-mysql-transfer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 417 Bytes
一键复制 编辑 原始数据 按行查看 历史
wj596 提交于 2021-01-17 22:50 . v1.0.3
FROM golang:1.14 as compiler
ENV GO111MODULE=on \
GOPROXY=https://goproxy.cn,direct
WORKDIR /app
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o transfer .
RUN mkdir publish && cp transfer publish && \
cp app.yml publish && cp -r web/statics publish
# 第二阶段
FROM alpine
WORKDIR /app
COPY --from=compiler /app/publish .
# 注意修改端口
EXPOSE 8060
ENTRYPOINT ["./transfer"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wj596/go-mysql-transfer.git
[email protected]:wj596/go-mysql-transfer.git
wj596
go-mysql-transfer
go-mysql-transfer
master

搜索帮助