1 Star 0 Fork 1

loveresolution/eagle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 708 Bytes
一键复制 编辑 原始数据 按行查看 历史
loveresolution 提交于 2024-02-20 16:40 . fix rpc addr
FROM arm64v8/golang AS base
ENV GOPATH=/go
ENV GOPROXY=https://goproxy.cn
RUN mkdir -p /go/src/kyland.com/eagle
WORKDIR /go/src/kyland.com/eagle
COPY . .
RUN rm go.mod go.sum && go mod init && go mod tidy
RUN go build -v -o /bin/eagle kyland.com/eagle
FROM arm64v8/ubuntu:22.04 AS server
WORKDIR /
#RUN apt update && apt install curl telnet lsof iproute2 -y
COPY --from=base /go/src/kyland.com/eagle/tini /
COPY --from=base /bin/eagle /
COPY --from=base /go/src/kyland.com/eagle/etc/config.yml /etc/config.yml
COPY --from=base /go/src/kyland.com/eagle/etc/log.xml /etc/log.xml
RUN chmod +x /tini /eagle
ENTRYPOINT ["/tini", "--"]
# Run your program under Tini
CMD ["/eagle"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lovekernel/eagle.git
git@gitee.com:lovekernel/eagle.git
lovekernel
eagle
eagle
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385