2021-08-18 14:13:38 +01:00
|
|
|
FROM docker.io/golang:1.17-alpine AS base
|
2021-01-18 12:24:23 +00:00
|
|
|
|
|
|
|
RUN apk --update --no-cache add bash build-base
|
|
|
|
|
|
|
|
WORKDIR /build
|
|
|
|
|
|
|
|
COPY . /build
|
|
|
|
|
|
|
|
RUN mkdir -p bin
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/dendrite-monolith-server
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/goose
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/create-account
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/generate-keys
|
2020-10-20 16:11:24 +01:00
|
|
|
|
|
|
|
FROM alpine:latest
|
2022-03-24 15:22:06 +00:00
|
|
|
LABEL org.opencontainers.image.title="Dendrite (Monolith)"
|
|
|
|
LABEL org.opencontainers.image.description="Next-generation Matrix homeserver written in Go"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/matrix-org/dendrite"
|
|
|
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
2020-10-20 16:11:24 +01:00
|
|
|
|
2021-03-03 11:20:40 +00:00
|
|
|
COPY --from=base /build/bin/* /usr/bin/
|
2020-10-20 16:11:24 +01:00
|
|
|
|
|
|
|
VOLUME /etc/dendrite
|
|
|
|
WORKDIR /etc/dendrite
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/dendrite-monolith-server"]
|