1 Star 0 Fork 0

xtzx/livekit-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 663 Bytes
一键复制 编辑 原始数据 按行查看 历史
David Zhao 提交于 2021-02-28 22:26 . use nack fix in ion-sfu, fixes #26
FROM golang:1.16-alpine as builder
WORKDIR /workspace
# Copy the Go Modules manifests
COPY go.mod go.mod
COPY go.sum go.sum
# cache deps before building and copying source so that we don't need to re-download as much
# and so that source changes don't invalidate our downloaded layer
RUN go mod download
# Copy the go source
COPY cmd/ cmd/
COPY pkg/ pkg/
COPY proto/ proto/
COPY test/ test/
COPY tools/ tools/
COPY version/ version/
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -o livekit-server ./cmd/server
FROM alpine
COPY --from=builder /workspace/livekit-server /livekit-server
# Run the binary.
ENTRYPOINT ["/livekit-server"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/smilejx001/livekit-server.git
git@gitee.com:smilejx001/livekit-server.git
smilejx001
livekit-server
livekit-server
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385