3 Star 10 Fork 5

热门极速下载 / guora

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 428 Bytes
一键复制 编辑 原始数据 按行查看 历史
Larissa Reyes 提交于 2020-08-28 14:37 . Added alpine based docker images
FROM golang:1.13-alpine AS builder
WORKDIR /go/src/github.com/meloalright/guora
ENV CC=gcc
COPY . .
RUN apk add --no-cache gcc musl-dev \
&& go build ./cmd/guora && mv guora /go/bin
###############
FROM alpine:3.6
COPY --from=builder /go/bin/guora /usr/local/bin
COPY --from=builder /go/src/github.com/meloalright/guora /guora
COPY configuration.example.yaml /etc/guora/configuration.yaml
WORKDIR /guora
CMD "guora" "-init"
Go
1
https://gitee.com/mirrors_trending/guora.git
git@gitee.com:mirrors_trending/guora.git
mirrors_trending
guora
guora
master

搜索帮助