1 Star 0 Fork 8

charles/greenplum_exporter

forked from inrgihc/greenplum_exporter 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 421 Bytes
一键复制 编辑 原始数据 按行查看 历史
inrgihc 提交于 2020-11-29 07:45 . 更新
#alpine build
FROM golang:1.14-alpine AS builder
RUN go env -w GO111MODULE=on && go env -w GOPROXY=https://goproxy.io,direct
WORKDIR /home
ADD . .
RUN mkdir bin && go mod download && go build -o ./bin/greenplum_exporter
# image
FROM alpine:latest
COPY --from=builder /home/bin/greenplum_exporter /home/greenplum_exporter
EXPOSE 9297
USER root
CMD [ "/home/greenplum_exporter" , "--log.level=error"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/charles-shi/greenplum_exporter.git
git@gitee.com:charles-shi/greenplum_exporter.git
charles-shi
greenplum_exporter
greenplum_exporter
master

搜索帮助