mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
1b389abbfd
* Upload Docker images for releases to both Docker Hub and GitHub Container Registry * Build current images on `:main` tag * Use Dendrite flow to trigger Docker flow for `:main` * Tweaks * Fix references to `env.GHCR_NAMESPACE`
26 lines
784 B
Docker
26 lines
784 B
Docker
FROM docker.io/golang:1.17-alpine AS base
|
|
|
|
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-polylith-multi
|
|
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
|
|
|
|
FROM alpine:latest
|
|
LABEL org.opencontainers.image.title="Dendrite (Polylith)"
|
|
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-polylith-multi"] |