3 Star 0 Fork 0

mirrors_DataDog/hound

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 480 Bytes
一键复制 编辑 原始数据 按行查看 历史
David Kolossa 提交于 2021-02-16 09:34 +08:00 . Use tini as default entry point (#376)
FROM alpine:3.11.7
ENV GOPATH /go
COPY . /go/src/github.com/hound-search/hound
RUN apk update \
&& apk add go git subversion libc-dev mercurial bzr openssh tini \
&& cd /go/src/github.com/hound-search/hound \
&& go mod download \
&& go install github.com/hound-search/hound/cmds/houndd \
&& apk del go \
&& rm -f /var/cache/apk/* \
&& rm -rf /go/src /go/pkg
VOLUME ["/data"]
EXPOSE 6080
ENTRYPOINT ["/sbin/tini", "--", "/go/bin/houndd", "-conf", "/data/config.json"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_DataDog/hound.git
git@gitee.com:mirrors_DataDog/hound.git
mirrors_DataDog
hound
hound
main

搜索帮助