mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-20 13:23:22 -06:00
10 lines
166 B
Docker
10 lines
166 B
Docker
FROM docker.io/golang:1.13.7-alpine3.11 AS builder
|
|
|
|
RUN apk --update --no-cache add bash build-base
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . /build
|
|
|
|
RUN mkdir -p bin
|
|
RUN sh ./build.sh |