2023-12-12 17:31:36 +01:00
|
|
|
# Pinned to alpine3.18 until https://github.com/mattn/go-sqlite3/issues/1164 is solved
|
|
|
|
FROM docker.io/golang:1.21-alpine3.18 AS base
|
2022-11-03 14:57:44 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Needs to be separate from the main Dockerfile for OpenShift,
|
|
|
|
# as --target is not supported there.
|
|
|
|
#
|
|
|
|
|
|
|
|
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-demo-yggdrasil
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/create-account
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/generate-keys
|
|
|
|
|
|
|
|
FROM alpine:latest
|
|
|
|
LABEL org.opencontainers.image.title="Dendrite (Yggdrasil demo)"
|
|
|
|
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"
|
|
|
|
|
|
|
|
COPY --from=base /build/bin/* /usr/bin/
|
|
|
|
|
|
|
|
VOLUME /etc/dendrite
|
|
|
|
WORKDIR /etc/dendrite
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/dendrite-demo-yggdrasil"]
|