mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-26 08:13:09 -06:00
14 lines
288 B
Ruby
14 lines
288 B
Ruby
FROM docker.io/golang:alpine AS builder
|
|
ARG GOARCH=amd64
|
|
|
|
RUN apk --update --no-cache add bash build-base curl
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . /build
|
|
|
|
RUN bash /build/.github/workflows/get-compiler.sh pkgs
|
|
|
|
# Build!
|
|
RUN CC="$(/build/.github/workflows/get-compiler.sh ccomp)" bash /build/build.sh
|