1 Star 0 Fork 1

郑禹/script_exporter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 440 Bytes
一键复制 编辑 原始数据 按行查看 历史
ricoberger 提交于 2021-12-10 22:53 . Add bash to Docker image
FROM golang:1.17-alpine3.14 as build
RUN apk add --no-cache --update git make
RUN mkdir /build
WORKDIR /build
COPY . .
RUN make build
FROM alpine:3.14
LABEL maintainer="Rico Berger"
LABEL git.url="https://github.com/ricoberger/script_exporter"
RUN apk add --no-cache --update bash curl ca-certificates
USER nobody
COPY --from=build /build/bin/script_exporter /bin/script_exporter
EXPOSE 9469
ENTRYPOINT [ "/bin/script_exporter" ]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/zhengyu1992_cn/script_exporter.git
[email protected]:zhengyu1992_cn/script_exporter.git
zhengyu1992_cn
script_exporter
script_exporter
master

搜索帮助