mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-20 13:23:22 -06:00
14 lines
321 B
Docker
14 lines
321 B
Docker
FROM matrixdotorg/dendrite:latest AS base
|
|
|
|
FROM alpine:latest
|
|
|
|
COPY --from=base /build/bin/dendrite-monolith-server /usr/bin
|
|
|
|
WORKDIR /etc/dendrite
|
|
|
|
ENTRYPOINT [ "/usr/bin/dendrite-monolith-server", "--tls-cert=server.crt", "--tls-key=server.key", "--config=dendrite.yaml" ]
|
|
|
|
EXPOSE 8008
|
|
EXPOSE 8448
|
|
|
|
VOLUME /etc/dendrite |