mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-24 15:23:09 -06:00
10 lines
160 B
Docker
10 lines
160 B
Docker
FROM docker.io/golang:1.15-alpine AS builder
|
|
|
|
RUN apk --update --no-cache add bash build-base
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . /build
|
|
|
|
RUN mkdir -p bin
|
|
RUN sh ./build.sh |