mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-24 07:13:09 -06:00
14 lines
336 B
Docker
14 lines
336 B
Docker
FROM matrixdotorg/dendrite:latest AS base
|
|
|
|
FROM alpine:latest
|
|
|
|
ARG component=monolith
|
|
|
|
COPY --from=base /build/bin/dendrite-monolith-server /usr/bin
|
|
COPY --from=base /build/bin/goose /usr/bin
|
|
COPY --from=base /build/bin/create-account /usr/bin
|
|
|
|
VOLUME /etc/dendrite
|
|
WORKDIR /etc/dendrite
|
|
|
|
ENTRYPOINT /usr/bin/dendrite-monolith-server $@ |