5 Star 14 Fork 3

Gitee 极速下载 / Meitu-Titan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/meitu/titan
克隆/下载
Dockerfile 506 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Builder image
FROM golang:1.13.5-alpine3.11 as builder
RUN apk add --no-cache \
make \
git
COPY . /go/src/github.com/distributedio/titan
WORKDIR /go/src/github.com/distributedio/titan
RUN env GOOS=linux CGO_ENABLED=0 make
# Executable image
FROM alpine
COPY --from=builder /go/src/github.com/distributedio/titan/titan /titan/bin/titan
COPY --from=builder /go/src/github.com/distributedio/titan/conf/titan.toml /titan/conf/titan.toml
WORKDIR /titan
EXPOSE 7369
ENTRYPOINT ["./bin/titan"]
Go
1
https://gitee.com/mirrors/Meitu-Titan.git
git@gitee.com:mirrors/Meitu-Titan.git
mirrors
Meitu-Titan
Meitu-Titan
master

搜索帮助