mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 15:35:41 +00:00
Generated by renovateBot Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
31 lines
725 B
Docker
31 lines
725 B
Docker
FROM golang:1.20-alpine as builder
|
|
|
|
ARG TARGETPLATFORM
|
|
ARG TARGETARCH
|
|
RUN echo building for "$TARGETPLATFORM"
|
|
|
|
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 test/ test/
|
|
COPY tools/ tools/
|
|
COPY version/ version/
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH 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"]
|