mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-18 04:13:10 -06:00
Remove old run scripts Add environment parsing Add Dockerfiles Add docker-compose for easy building Signed-off-by: feffe <feffe@feffe.dev>
9 lines
226 B
Docker
9 lines
226 B
Docker
###########
|
|
## Build ##
|
|
###########
|
|
FROM golang:1.13-alpine AS build
|
|
RUN apk --update --no-cache add openssl bash git ca-certificates
|
|
WORKDIR /build
|
|
COPY . .
|
|
RUN CGO_ENABLED=0 GOOS=linux GOBIN=$PWD/bin go install -v ./cmd/...
|