2 Star 0 Fork 0

huangshubin/trading-engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile_proxy 573 Bytes
一键复制 编辑 原始数据 按行查看 历史
huangshubin 提交于 2023-08-16 09:28 . trade-engine v1.0
FROM golang:1.20-alpine AS build-env
ENV GO111MODULE=on \
CGO_ENABLED=0 \
GOOS=linux \
GOARCH=amd64 \
GOPROXY=https://goproxy.cn
WORKDIR /app
RUN set -eux && sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
COPY go.mod /app
COPY go.sum /app
COPY proxy/ /app/proxy
COPY consul/ /app/consul
RUN go mod tidy & go mod download
WORKDIR /app/proxy
RUN go build -o proxy .
WORKDIR /app
Run cp /app/proxy/proxy /app/p
# FROM scratch
# WORKDIR /app
# COPY --from=build-env /app/proxy/proxy .
EXPOSE 6543
ENTRYPOINT ["/app/p"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/huangshubin/trading-engine.git
[email protected]:huangshubin/trading-engine.git
huangshubin
trading-engine
trading-engine
master

搜索帮助