mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-18 15:50:52 +01:00
13 lines
362 B
Text
13 lines
362 B
Text
|
FROM matrixdotorg/dendrite:latest AS base
|
||
|
|
||
|
FROM alpine:latest
|
||
|
|
||
|
COPY --from=base /build/bin/dendrite-polylith-multi /usr/bin
|
||
|
COPY --from=base /build/bin/goose /usr/bin
|
||
|
COPY --from=base /build/bin/create-account /usr/bin
|
||
|
COPY --from=base /build/bin/generate-keys /usr/bin
|
||
|
|
||
|
VOLUME /etc/dendrite
|
||
|
WORKDIR /etc/dendrite
|
||
|
|
||
|
ENTRYPOINT ["/usr/bin/dendrite-polylith-multi"]
|